50
|
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
|
3 <modelVersion>4.0.0</modelVersion> |
|
4 <groupId>de.intevation.bsh.artifacts</groupId> |
|
5 <artifactId>gnv-artifacts</artifactId> |
|
6 <packaging>jar</packaging> |
|
7 <version>1.0-SNAPSHOT</version> |
|
8 <name>gnv-artifacts</name> |
|
9 <url>http://maven.apache.org</url> |
|
10 <build> |
|
11 <plugins> |
|
12 <plugin> |
|
13 <groupId>org.apache.maven.plugins</groupId> |
|
14 <artifactId>maven-eclipse-plugin</artifactId> |
|
15 <version>2.5.1</version> |
|
16 </plugin> |
|
17 <plugin> |
|
18 <groupId>org.apache.maven.plugins</groupId> |
|
19 <artifactId>maven-compiler-plugin</artifactId> |
|
20 <version>2.0.2</version> |
|
21 <configuration> |
|
22 <source>1.5</source> |
|
23 <target>1.5</target> |
|
24 </configuration> |
|
25 </plugin> |
|
26 </plugins> |
|
27 </build> |
|
28 <dependencies> |
|
29 <dependency> |
|
30 <groupId>de.intevation.bsh.artifact-database</groupId> |
|
31 <artifactId>artifact-database</artifactId> |
|
32 <version>1.0-SNAPSHOT</version> |
|
33 </dependency> |
|
34 <dependency> |
|
35 <groupId>de.intevation.bsh.geo-backend</groupId> |
|
36 <artifactId>geo-backend</artifactId> |
|
37 <version>1.0-SNAPSHOT</version> |
|
38 </dependency> |
|
39 <dependency> |
|
40 <groupId>junit</groupId> |
|
41 <artifactId>junit</artifactId> |
|
42 <version>3.8.1</version> |
|
43 <scope>test</scope> |
|
44 </dependency> |
|
45 </dependencies> |
|
46 </project> |