comparison flys-backend/pom.xml @ 207:2b745b5e731c 0.1

merged flys-backend/0.1
author Thomas Arendsen Hein <thomas@intevation.de>
date Fri, 28 Sep 2012 12:14:07 +0200
parents 7cdac4324609
children 2b57edd94735
comparison
equal deleted inserted replaced
160:27d3d0093993 207:2b745b5e731c
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.2.Final</version>
59 </dependency>
60 <dependency>
61 <groupId>org.hibernate</groupId>
62 <artifactId>hibernate-entitymanager</artifactId>
63 <version>3.6.2.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.2.2</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 </dependencies>
82
83 <repositories>
84 <repository>
85 <id>repository.jboss.org/nexus</id>
86 <name>JBoss Repository - Nexus</name>
87 <url>http://repository.jboss.org/nexus/content/groups/public/</url>
88 </repository>
89 </repositories>
90 </project>

http://dive4elements.wald.intevation.org