Revision 22844 trunk/applications/appgvSIG/pom.xml

View differences:

pom.xml
143 143
			<artifactId>csvstring</artifactId>
144 144
			<version>1.0</version>
145 145
		</dependency>
146
		<dependency>
147
			<groupId>org.gvsig.legacy</groupId>
148
			<artifactId>hsqldb</artifactId>
149
			<version>gvsig</version>
150
		</dependency>
146 151
	</dependencies>
147 152
	<properties>
148 153
		<extension-appgvsig-lib-dir> ${extension-dir}/com.iver.cit.gvsig/lib/
......
163 168
	<build>
164 169
		<sourceDirectory>src</sourceDirectory>
165 170
		<testSourceDirectory>test</testSourceDirectory>
166
		<plugins>
167
			<plugin>
168
				<groupId>org.apache.maven.plugins</groupId>
169
				<artifactId>maven-dependency-plugin</artifactId>
170
				<executions>
171
					<execution>
172
						<id>copy-osgVP</id>
173
						<phase>install</phase>
174
						<goals>
175
							<goal>copy</goal>
176
						</goals>
177
						<configuration>
178
							<artifactItems>
179
								<artifactItem>
180
									<groupId>jogl</groupId>
181
									<artifactId>jogl</artifactId>
182
									<version>1.1.0</version>
183
									<type>jar</type>
184
									<overWrite>true</overWrite>
185
								</artifactItem>
186
								<artifactItem>
187
									<groupId>jogl</groupId>
188
									<artifactId>gluegen-rt</artifactId>
189
									<version>1.1.1</version>
190
									<type>jar</type>
191
									<overWrite>true</overWrite>
192
								</artifactItem>
193
								<artifactItem>
194
									<groupId>ai2</groupId>
195
									<artifactId>libNative</artifactId>
196
									<version>1.0</version>
197
									<type>jar</type>
198
									<overWrite>true</overWrite>
199
								</artifactItem>
200
								<artifactItem>
201
									<groupId>ai2.osgvp</groupId>
202
									<artifactId>
203
										libosgvp-core
204
									</artifactId>
205
									<version>2.0.4</version>
206
									<type>jar</type>
207
									<overWrite>true</overWrite>
208
								</artifactItem>
209
								<artifactItem>
210
									<groupId>ai2.osgvp</groupId>
211
									<artifactId>
212
										libosgvp-ephemeris
213
									</artifactId>
214
									<version>2.0.4</version>
215
									<type>jar</type>
216
									<overWrite>true</overWrite>
217
								</artifactItem>
218
								<artifactItem>
219
									<groupId>ai2.osgvp</groupId>
220
									<artifactId>
221
										libosgvp-features
222
									</artifactId>
223
									<version>2.0.4</version>
224
									<type>jar</type>
225
									<overWrite>true</overWrite>
226
								</artifactItem>
227
								<artifactItem>
228
									<groupId>ai2.osgvp</groupId>
229
									<artifactId>
230
										libosgvp-manipulator
231
									</artifactId>
232
									<version>2.0.4</version>
233
									<type>jar</type>
234
									<overWrite>true</overWrite>
235
								</artifactItem>
236
								<artifactItem>
237
									<groupId>ai2.osgvp</groupId>
238
									<artifactId>
239
										libosgvp-planets
240
									</artifactId>
241
									<version>2.0.4</version>
242
									<type>jar</type>
243
									<overWrite>true</overWrite>
244
								</artifactItem>
245
								<artifactItem>
246
									<groupId>ai2.osgvp</groupId>
247
									<artifactId>
248
										libosgvp-viewer
249
									</artifactId>
250
									<version>2.0.4</version>
251
									<type>jar</type>
252
									<overWrite>true</overWrite>
253
								</artifactItem>
254
								<artifactItem>
255
									<groupId>org.gvsig</groupId>
256
									<artifactId>
257
										libCacheService
258
									</artifactId>
259
									<version>1.0-SNAPSHOT</version>
260
									<type>jar</type>
261
									<overWrite>true</overWrite>
262
								</artifactItem>
263
							</artifactItems>
264
							<outputDirectory>
265
								${gvsig-lib-dir}
266
							</outputDirectory>
267
							<overWriteReleases>false</overWriteReleases>
268
							<overWriteSnapshots>
269
								true
270
							</overWriteSnapshots>
271
							<excludeTransitive>false</excludeTransitive>
272
						</configuration>
273
					</execution>
274
					<execution>
275
						<id>copy-lib3DMap</id>
276
						<phase>install</phase>
277
						<goals>
278
							<goal>copy</goal>
279
						</goals>
280
						<configuration>
281
							<artifactItems>
282
								<artifactItem>
283
									<groupId>org.gvsig</groupId>
284
									<artifactId>lib3DMap</artifactId>
285
									<version>1.0-SNAPSHOT</version>
286
									<type>jar</type>
287
									<overWrite>true</overWrite>
288
								</artifactItem>
289
							</artifactItems>
290
							<outputDirectory>
291
								${extension-lib-dir}
292
							</outputDirectory>
293
							<overWriteReleases>false</overWriteReleases>
294
							<overWriteSnapshots>
295
								true
296
							</overWriteSnapshots>
297
							<excludeTransitive>false</excludeTransitive>
298
						</configuration>
299
					</execution>
300
					<execution>
301
						<id>copy-extension</id>
302
						<phase>install</phase>
303
						<goals>
304
							<goal>copy</goal>
305
						</goals>
306
						<configuration>
307
							<artifactItems>
308
								<artifactItem>
309
									<groupId>org.gvsig</groupId>
310
									<artifactId>
311
										lib3DMap-share
312
									</artifactId>
313
									<version>1.0-SNAPSHOT</version>
314
									<type>jar</type>
315
									<overWrite>true</overWrite>
316
								</artifactItem>
317
							</artifactItems>
318
							<outputDirectory>
319
								${extension-appgvsig-lib-dir}
320
							</outputDirectory>
321
							<overWriteReleases>false</overWriteReleases>
322
							<overWriteSnapshots>
323
								true
324
							</overWriteSnapshots>
325
							<excludeTransitive>false</excludeTransitive>
326
						</configuration>
327
					</execution>
328
				</executions>
329
			</plugin>
330
		</plugins>
331 171
	</build>
332
	<profiles>
333
		<profile>
334
			<id>install-binaries</id>
335
			<activation>
336
				<property>
337
					<name>install-binaries-dir</name>
338
				</property>
339
			</activation>
340
			<build>
341
				<plugins>
342
					<plugin>
343
						<artifactId>maven-antrun-plugin</artifactId>
344
						<executions>
345
							<execution>
346
								<id>copy-native-3D</id>
347
								<phase>install</phase>
348
								<configuration>
349
									<tasks name="install binaries">
350
										<property
351
											name="install-binaries-dir" value="${install-binaries-dir}" />
352
										<ant
353
											antfile="${basedir}/maven-build.xml" inheritRefs="true" />
354
									</tasks>
355
								</configuration>
356
								<goals>
357
									<goal>run</goal>
358
								</goals>
359
							</execution>
360
						</executions>
361
					</plugin>
362
				</plugins>
363
			</build>
364
		</profile>
365
	</profiles>
366 172
</project>

Also available in: Unified diff