forked from locationtech/udig-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
267 lines (242 loc) · 9.88 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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
<?xml version="1.0" encoding="UTF-8"?>
<!--
uDig - User-friendly Desktop Internet GIS
http://udig.refractions.net
(C) 2011 Refractions Research Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation;
version 2.1 of the License.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
-->
<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>net.refractions</groupId>
<artifactId>udig-tycho</artifactId>
<version>1.3.0-SNAPSHOT</version>
<packaging>pom</packaging>
<description>
This is the base uDig pom that controls the version numbers
used by the nightly build process.
</description>
<prerequisites>
<maven>3.0</maven>
</prerequisites>
<properties>
<tycho-version>0.13.0</tycho-version>
<tycho-provider>org.eclipse.tycho</tycho-provider>
</properties>
<!--
We need to ask you to download some libs prior to doing a full build:
cd plugins/net.refractions.udig.libs
mvn clean install -f pom-libs.xml
cd ../..
Our maven tests require a bit more memory:
export MAVEN_OPTS="-Xmx512m -XX:MaxPermSize=128m"
Once that is done you can a normal build on the command line:
mvn install -Dall
If you run into any problems (to list debug and stack trace)
mvn -Dall -e -X install
Please note the Tycho maven plugin used to build RCP projects is a a work in progress; you
will do better to review the stack trace with a checkout of the Tycho code in hand as the
error messages are often misleading and evil.
To quickly build the product:
mvn install
The build supports the use of profiles - to run a normal build with tests:
mvn install -Dall -Ptest
The following profiles are defined:
Defines the appropriate p2 update repository
mvn install -PudigProfile (on by default)
Gathers the tutorials and source code for the software developers kit
mvn install -Psdk (included by -Dall)
Includes test plugins (this is optional):
mvn install -Ptest
To profile the tests you will need:
mvn install -Ptest -Pprofile
Gathers the plugins that are not included in the default product
mvn install -Ppending (included by -Dall)
Includes the udig and community sites:
-Psite
Includes the ossim feaure (this may be dead code)
-Possim
-->
<profiles>
<profile>
<id>udigProfile</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<repositories>
<repository>
<id>indigo-web</id>
<layout>p2</layout>
<url>http://download.eclipse.org/releases/indigo/</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
<repository>
<id>indigo-babel-web</id>
<layout>p2</layout>
<url>http://download.eclipse.org/technology/babel/update-site/R0.9.1/indigo</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
</repositories>
</profile>
<profile>
<id>coverage</id>
<activation>
<property>
<name>coverage</name>
</property>
</activation>
<properties>
<emma.session.out.file>${project.build.directory}/emma/${project.artifactId}.es</emma.session.out.file>
<emma.filter>se.mattiasholmqvist.*</emma.filter>
<eclemma.instrument.bundles>se.mattiasholmqvist.tychoexamples.bundle</eclemma.instrument.bundles>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>attach-artifacts</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>${emma.session.out.file}</file>
<type>es</type>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.tycho</groupId>
<artifactId>maven-osgi-test-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<systemProperties combine.children="append">
<eclemma.help>true</eclemma.help>
<emma.session.out.file>${emma.session.out.file}</emma.session.out.file>
<emma.filter>${emma.filter}</emma.filter>
<eclemma.instrument.bundles>${eclemma.instrument.bundles}</eclemma.instrument.bundles>
</systemProperties>
<frameworkExtensions>
<frameworkExtension>
<groupId>se.mattiasholmqvist.tychoexamples</groupId>
<artifactId>eclemma.runtime.equinox</artifactId>
<version>1.1.0.200908261008</version>
</frameworkExtension>
</frameworkExtensions>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>${tycho-provider}</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>${tycho-version}</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>${tycho-provider}</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho-version}</version>
<configuration>
<resolver>p2</resolver>
<!-- pomDependencies>consider</pomDependencies -->
<environments>
<environment>
<os>win32</os>
<ws>win32</ws>
<arch>x86</arch>
</environment>
<environment>
<os>linux</os>
<ws>gtk</ws>
<arch>x86</arch>
</environment>
<environment>
<os>macosx</os>
<ws>carbon</ws>
<arch>x86</arch>
</environment>
</environments>
</configuration>
</plugin>
<plugin>
<groupId>${tycho-provider}</groupId>
<artifactId>tycho-compiler-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.5</version>
<configuration>
<skip>true</skip>
</configuration>
<executions>
<execution>
<id>the-execution-id</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<!-- Code coverage report -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<!-- not a maven core plugin, specify version -->
<version>2.2</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<!-- not a maven core plugin, specify version -->
<version>2.1</version>
</plugin>
</plugins>
</reporting>
<modules>
<module>plugins</module>
<module>features</module>
</modules>
</project>