-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
185 lines (174 loc) · 6.98 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>dk.netarkivet.wayback</groupId>
<artifactId>openwayback-netarkivet-overlay</artifactId>
<version>2.4.0-FOR-NAS-7.1-SNAPSHOT</version>
<properties>
<nas.version>7.0</nas.version>
</properties>
<packaging>war</packaging>
<repositories>
<repository>
<id>sbforge-nexus</id>
<url>https://sbforge.org/nexus/content/groups/public</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>dk.netarchivesuite</groupId>
<artifactId>openwayback-core</artifactId>
<version>2.4.0-NAS-7.0</version>
<exclusions>
<exclusion>
<groupId>berkeleydb</groupId>
<artifactId>je</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>dk.netarchivesuite</groupId>
<artifactId>openwayback-webapp</artifactId>
<version>2.4.0-NAS-7.0</version>
<type>war</type>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.netarchivesuite</groupId>
<artifactId>common-core</artifactId>
<version>${nas.version}</version>
<exclusions>
<exclusion>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-runner</artifactId>
</exclusion>
<exclusion>
<groupId>berkeleydb</groupId>
<artifactId>je</artifactId>
</exclusion>
<exclusion>
<artifactId>tomcat-embed-core</artifactId>
<groupId>org.apache.tomcat.embed</groupId>
</exclusion>
<exclusion>
<artifactId>tomcat-jasper</artifactId>
<groupId>org.apache.tomcat</groupId>
</exclusion>
<exclusion>
<artifactId>tomcat-embed-jasper</artifactId>
<groupId>org.apache.tomcat.embed</groupId>
</exclusion>
<exclusion>
<artifactId>tomcat-jasper-el</artifactId>
<groupId>org.apache.tomcat</groupId>
</exclusion>
<exclusion>
<artifactId>tomcat-jsp-api</artifactId>
<groupId>org.apache.tomcat</groupId>
</exclusion>
<exclusion>
<artifactId>tomcat-embed-logging-juli</artifactId>
<groupId>org.apache.tomcat.embed</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.netarchivesuite</groupId>
<artifactId>archive-core</artifactId>
<version>${nas.version}</version>
<exclusions>
<exclusion>
<groupId>berkeleydb</groupId>
<artifactId>je</artifactId>
</exclusion>
<exclusion>
<artifactId>tomcat-embed-jasper</artifactId>
<groupId>org.apache.tomcat.embed</groupId>
</exclusion>
<exclusion>
<artifactId>tomcat-embed-core</artifactId>
<groupId>org.apache.tomcat.embed</groupId>
</exclusion>
<exclusion>
<artifactId>tomcat-servlet-api</artifactId>
<groupId>org.apache.tomcat</groupId>
</exclusion>
<exclusion>
<artifactId>tomcat-jsp-api</artifactId>
<groupId>org.apache.tomcat</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.netarchivesuite</groupId>
<artifactId>wayback-resourcestore</artifactId>
<version>${nas.version}</version>
<exclusions>
<exclusion>
<groupId>berkeleydb</groupId>
<artifactId>je</artifactId>
</exclusion>
<exclusion>
<groupId>org.archive.wayback</groupId>
<artifactId>wayback-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.netpreserve.openwayback</groupId>
<artifactId>openwayback-core</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<finalName>openwayback-netarkivet</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
<configuration>
<overlays>
<overlay>
<groupId>dk.netarchivesuite</groupId>
<artifactId>openwayback-webapp</artifactId>
</overlay>
</overlays>
</configuration>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.2</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>sbforge-nexus</id>
<name>SBForge Nexus Repo manager</name>
<url>https://sbforge.org/nexus/content/repositories/releases</url>
</repository>
<snapshotRepository>
<id>sbforge-nexus</id>
<name>SBForge Nexus Repo manager</name>
<url>https://sbforge.org/nexus/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<scm>
<connection>scm:git:https://github.com/netarchivesuite/openwayback-netarkivet-overlay.git</connection>
<developerConnection>scm:git:[email protected]:netarchivesuite/openwayback-netarkivet-overlay.git</developerConnection>
<tag>HEAD</tag>
</scm>
</project>