forked from AtlasOfLivingAustralia/ala-namematching-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
127 lines (114 loc) · 4.39 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
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>au.org.ala</groupId>
<artifactId>ala-parent-pom</artifactId>
<version>14</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<modules>
<module>client</module>
<module>server</module>
<module>core</module>
<module>ala-ws-client-common</module>
<module>ala-ws-client-testing</module>
<module>ala-namematching-tools</module>
</modules>
<groupId>au.org.ala.names</groupId>
<artifactId>ala-namematching-service</artifactId>
<version>1.8.1</version>
<packaging>pom</packaging>
<name>ALA Name Matching Service</name>
<description>
A web service that allows taxonomic lookup for scientific names.
The project is divided into three parts:
a core library,
a client library provides a web services client that can be invoked in an application and
a server that implements the service.
</description>
<organization>
<name>Atlas of Living Australia</name>
<url>https://ala.org.au</url>
</organization>
<scm>
<connection>scm:git:[email protected]:AtlasOfLivingAustralia/ala-namematching-service.git</connection>
<url>https://github.com/AtlasOfLivingAustralia/ala-namematching-service</url>
<developerConnection>scm:git:[email protected]:AtlasOfLivingAustralia/ala-namematching-service.git</developerConnection>
<tag>HEAD</tag>
</scm>
<licenses>
<license>
<name>Mozilla Public Licence 1.1</name>
<url>https://www.mozilla.org/en-US/MPL/1.1/</url>
</license>
</licenses>
<properties>
<!-- When changing the revision value, also change the version number in /server/run-local.sh -->
<revision>1.1</revision>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<ala-name-matching.version>4.2</ala-name-matching.version>
<cache2k.version>1.2.0.Final</cache2k.version>
<jackson.version>2.14.0</jackson.version>
<retrofit.version>2.6.2</retrofit.version>
<okhttp.version>4.3.1</okhttp.version>
<dropwizard.version>2.0.11</dropwizard.version>
<dropwizard-swagger.version>2.0.0-1</dropwizard-swagger.version>
<dropwizard-redirect-bundle.version>1.3.5</dropwizard-redirect-bundle.version>
<slf4j.version>1.7.5</slf4j.version>
<log4j.version>2.13.2</log4j.version>
<kotlin-stdlib.version>1.3.50</kotlin-stdlib.version>
<swagger-v3.version>2.2.6</swagger-v3.version>
<swagger-ui.version>4.15.0</swagger-ui.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-bom</artifactId>
<version>${dropwizard.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.10</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
</build>
<reporting>
<plugins>
<plugin>
<artifactId>maven-project-info-reports-plugin</artifactId>
<configuration>
<dependencyDetailsEnabled>false</dependencyDetailsEnabled>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</reporting>
<profiles>
<profile>
<!-- profile gets activated by travis and (crucially) skips the git-commit plugin -->
<id>travis</id>
<build>
</build>
</profile>
</profiles>
</project>