forked from brandonwillard/open-tracking-tools
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pom.xml
executable file
·214 lines (206 loc) · 7.69 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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<?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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.opentrackingtools</groupId>
<artifactId>opentrackingtools</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>OpenTrackingTools</name>
<scm>
<connection>scm:git:http://github.com/brandonwillard/open-tracking-tools.git</connection>
<developerConnection>scm:git:ssh://[email protected]/brandonwillard/open-tracking-tools.git</developerConnection>
<url>http://github.com/brandonwillard/open-tracking-tools</url>
</scm>
<distributionManagement>
<repository>
<id>releases-mvn-repo</id>
<url>http://build.staging.obanyc.com/archiva/repository/releases/</url>
</repository>
<snapshotRepository>
<id>snapshots-mvn-repo</id>
<url>http://build.staging.obanyc.com/archiva/repository/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<modules>
<module>open-tracking-tools-api</module>
<module>open-tracking-tools-otp</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>-Xmx2G</argLine>
<disableXmlReport>false</disableXmlReport>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.2.2</version>
<configuration>
<!-- by default, release:prepare runs goals 'clean' and 'verify'.
Javadoc generation in release:perform requires the new release
versions of our artifacts to already be installed in the local
repository. -->
<preparationGoals>clean install</preparationGoals>
<!-- The site generation step can fail. Run it in release:prepare to make sure it
works before tagging the release. Enunciate model validation is currently failing,
apparently due to a problem in enunciate.
<preparationGoals>clean install site</preparationGoals>
-->
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12</version>
</plugin>
<plugin>
<!-- m2eclipse lifecycle mapping configuration -->
<!-- should not affect builds outside IDE -->
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<versionRange>[1.0,)</versionRange>
<goals>
<goal>copy-dependencies</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<repositories>
<repository>
<id>brandonwillard-mvn-repo</id>
<snapshots>
<enabled>true</enabled>
</snapshots>
<url>https://bitbucket.org/brandonwillard/mvn-repo/raw/snapshots</url>
</repository>
<!-- todo remove this -->
<!-- temporary fork of geotools to upgrade hslqdb -->
<repository>
<id>nyc-cache</id>
<url>http://build.staging.obanyc.com/archiva/repository/snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<!-- Hack to force maven to check central first. Maven central is inherited from the superpom,
but ends up at the end of the list. Though most of the time the artifact is in central,
Maven tries to download from every other repository and fails before checking central.
Do not change the id from central2 to central, otherwise the entry will be ignored. -->
<repository>
<id>central2</id>
<name>check central first to avoid a lot of not found warnings</name>
<url>http://repo1.maven.org/maven2</url>
</repository>
<repository>
<id>openjump</id>
<name>OpenJUMP Maven 2 Repository</name>
<url>http://jump-pilot.svn.sourceforge.net/svnroot/jump-pilot/maven-repository/</url>
</repository>
<repository>
<id>refractions</id>
<name>Refractions Research Maven 2 Repository</name>
<url>http://lists.refractions.net/m2</url>
</repository>
<repository>
<id>download.java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://download.java.net/maven/2/</url>
<layout>default</layout>
</repository>
<repository>
<id>releases.developer.onebusaway.org</id>
<url>http://developer.onebusaway.org/maven/repository/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>osgeo</id>
<name>Open Source Geospatial Foundation Repository</name>
<url>http://download.osgeo.org/webdav/geotools/</url>
</repository>
<repository>
<id>opengeo</id>
<name>OpenGeo Maven Repository</name>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
<url>http://repo.opengeo.org/</url>
</repository>
<!-- <repository> -->
<!-- <id>sonatype-nexus-releases</id> -->
<!-- <name>Sonatype Nexus Releases</name> -->
<!-- <url>https://oss.sonatype.org/content/repositories/snapshots</url> -->
<!-- <snapshots> -->
<!-- <enabled>true</enabled> -->
<!-- </snapshots> -->
<!-- </repository> -->
</repositories>
<properties>
<jts.version>1.12</jts.version>
<foundry.version>3.3.3</foundry.version>
<geotools.version>10.0.1-SNAPSHOT</geotools.version>
<jersey.version>1.11</jersey.version>
<spring.version>3.0.5.RELEASE</spring.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>