-
Notifications
You must be signed in to change notification settings - Fork 4
/
pom.xml
144 lines (132 loc) · 4.49 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
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.gbif</groupId>
<artifactId>motherpom</artifactId>
<version>37</version>
</parent>
<artifactId>watchdog</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>watchdog</name>
<description>Project functioning as a watchful guardian of content in the GBIF network, especially against datasets going offline.</description>
<url>http://maven.apache.org</url>
<properties>
<checklistbank-ws-client.version>2.53</checklistbank-ws-client.version>
<gbif-common.version>0.32</gbif-common.version>
<gbif-httputils.version>0.10</gbif-httputils.version>
<gbif-metadata-profile.version>1.1.1</gbif-metadata-profile.version>
<metrics-ws-client.version>0.26</metrics-ws-client.version>
<occurrence-ws-client.version>0.79</occurrence-ws-client.version>
<registry-ws-client.version>2.78</registry-ws-client.version>
<guava.version>18.0</guava.version>
<guice.version>4.0</guice.version>
<httpclient.version>4.3.6</httpclient.version>
<jdkLevel>1.8</jdkLevel>
<junit.version>4.12</junit.version>
<logback.version>1.1.7</logback.version>
<servletapi.version>3.0.1</servletapi.version>
<slf4j.version>1.7.21</slf4j.version>
</properties>
<repositories>
<repository>
<id>gbif-all</id>
<url>http://repository.gbif.org/content/groups/gbif</url>
</repository>
</repositories>
<dependencies>
<!-- GBIF -->
<dependency>
<groupId>org.gbif.registry</groupId>
<artifactId>registry-ws-client</artifactId>
<version>${registry-ws-client.version}</version>
</dependency>
<dependency>
<groupId>org.gbif</groupId>
<artifactId>gbif-common</artifactId>
<version>${gbif-common.version}</version>
</dependency>
<dependency>
<groupId>org.gbif.occurrence</groupId>
<artifactId>occurrence-ws-client</artifactId>
<version>${occurrence-ws-client.version}</version>
</dependency>
<dependency>
<groupId>org.gbif.metrics</groupId>
<artifactId>metrics-ws-client</artifactId>
<version>${metrics-ws-client.version}</version>
</dependency>
<dependency>
<groupId>org.gbif.checklistbank</groupId>
<artifactId>checklistbank-ws-client</artifactId>
<version>${checklistbank-ws-client.version}</version>
</dependency>
<dependency>
<groupId>org.gbif</groupId>
<artifactId>gbif-httputils</artifactId>
<version>${gbif-httputils.version}</version>
</dependency>
<dependency>
<groupId>org.gbif</groupId>
<artifactId>gbif-metadata-profile</artifactId>
<version>${gbif-metadata-profile.version}</version>
</dependency>
<!-- Google -->
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<version>${guice.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>${servletapi.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>${httpclient.version}</version>
</dependency>
<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
<scope>runtime</scope>
</dependency>
<!-- testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<executions>
<execution>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>