comparison flys-backend/pom.xml @ 2386:cb7ebcadb214 2.6

merged flys-backend/2.6
author Thomas Arendsen Hein <thomas@intevation.de>
date Fri, 28 Sep 2012 12:14:23 +0200
parents 8477965674ce
children 2e993a847e31
comparison
equal deleted inserted replaced
2333:66946e278e66 2386:cb7ebcadb214
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/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4
5 <groupId>de.intevation.flys</groupId>
6 <artifactId>flys-backend</artifactId>
7 <version>1.0-SNAPSHOT</version>
8 <packaging>jar</packaging>
9
10 <name>flys-backend</name>
11 <url>http://maven.apache.org</url>
12
13 <properties>
14 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15 </properties>
16
17 <build>
18 <plugins>
19 <plugin>
20 <groupId>org.codehaus.mojo</groupId>
21 <artifactId>hibernate3-maven-plugin</artifactId>
22 <version>2.2</version>
23 <!--
24 <configuration>
25 <componentProperties>
26 <propertyfile>src/main/config/hbm.properties</propertyfile>
27 </componentProperties>
28 </configuration>
29 -->
30 </plugin>
31 <plugin>
32 <groupId>org.apache.maven.plugins</groupId>
33 <artifactId>maven-compiler-plugin</artifactId>
34 <version>2.0.2</version>
35 <configuration>
36 <source>1.5</source>
37 <target>1.5</target>
38 </configuration>
39 </plugin>
40 </plugins>
41 </build>
42
43 <dependencies>
44 <dependency>
45 <groupId>de.intevation.artifacts.common</groupId>
46 <artifactId>artifacts-common</artifactId>
47 <version>1.0-SNAPSHOT</version>
48 </dependency>
49 <dependency>
50 <groupId>junit</groupId>
51 <artifactId>junit</artifactId>
52 <version>3.8.1</version>
53 <scope>test</scope>
54 </dependency>
55 <dependency>
56 <groupId>org.hibernate</groupId>
57 <artifactId>hibernate-core</artifactId>
58 <version>3.6.5.Final</version>
59 </dependency>
60 <dependency>
61 <groupId>org.hibernate</groupId>
62 <artifactId>hibernate-entitymanager</artifactId>
63 <version>3.6.5.Final</version>
64 </dependency>
65 <dependency>
66 <groupId>log4j</groupId>
67 <artifactId>log4j</artifactId>
68 <version>1.2.14</version>
69 </dependency>
70 <dependency>
71 <groupId>commons-dbcp</groupId>
72 <artifactId>commons-dbcp</artifactId>
73 <version>1.4</version>
74 </dependency>
75 <dependency>
76 <groupId>postgresql</groupId>
77 <artifactId>postgresql</artifactId>
78 <version>8.4-702.jdbc4</version>
79 <scope>runtime</scope>
80 </dependency>
81 <dependency>
82 <groupId>org.hibernatespatial</groupId>
83 <artifactId>hibernate-spatial-postgis</artifactId>
84 <version>1.1</version>
85 </dependency>
86 <dependency>
87 <groupId>org.hibernatespatial</groupId>
88 <artifactId>hibernate-spatial-oracle</artifactId>
89 <version>1.1</version>
90 </dependency>
91 <dependency>
92 <groupId>org.postgis</groupId>
93 <artifactId>postgis-jdbc</artifactId>
94 <version>1.3.3</version>
95 </dependency>
96 </dependencies>
97
98 <repositories>
99 <repository>
100 <id>repository.jboss.org/nexus</id>
101 <name>JBoss Repository - Nexus</name>
102 <url>http://repository.jboss.org/nexus/content/groups/public/</url>
103 </repository>
104 <repository>
105 <id>OSGEO GeoTools repo</id>
106 <url>http://download.osgeo.org/webdav/geotools</url>
107 </repository>
108 <repository>
109 <id>Hibernate Spatial repo</id>
110 <url>http://www.hibernatespatial.org/repository</url>
111 </repository>
112 </repositories>
113 </project>

http://dive4elements.wald.intevation.org