comparison backend/pom.xml @ 5838:5aa05a7a34b7

Rename modules to more fitting names.
author Sascha L. Teichmann <teichmann@intevation.de>
date Thu, 25 Apr 2013 15:23:37 +0200
parents flys-backend/pom.xml@821a02bbfb4e
children 1e68eca26b8a
comparison
equal deleted inserted replaced
5837:d9901a08d0a6 5838:5aa05a7a34b7
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>org.dive4elements.river</groupId>
6 <artifactId>river-backend</artifactId>
7 <version>1.0-SNAPSHOT</version>
8 <packaging>jar</packaging>
9
10 <name>river-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.6</source>
37 <target>1.6</target>
38 </configuration>
39 </plugin>
40 <plugin>
41 <groupId>org.apache.maven.plugins</groupId>
42 <artifactId>maven-jar-plugin</artifactId>
43 <configuration>
44 <archive>
45 <manifest>
46 <mainClass>org.dive4elements.river.importer.Importer</mainClass>
47 <packageName>org.dive4elements.river.importer</packageName>
48 </manifest>
49 </archive>
50 </configuration>
51 </plugin>
52 <plugin>
53 <artifactId>maven-assembly-plugin</artifactId>
54 <configuration>
55 <archive>
56 <manifest>
57 <mainClass>org.dive4elements.river.importer.Importer</mainClass>
58 </manifest>
59 </archive>
60 <descriptorRefs>
61 <descriptorRef>jar-with-dependencies</descriptorRef>
62 </descriptorRefs>
63 </configuration>
64 </plugin>
65 </plugins>
66 </build>
67
68 <dependencies>
69 <dependency>
70 <groupId>org.dive4elements</groupId>
71 <artifactId>artifacts-common</artifactId>
72 <version>1.0-SNAPSHOT</version>
73 </dependency>
74 <dependency>
75 <groupId>junit</groupId>
76 <artifactId>junit</artifactId>
77 <version>3.8.1</version>
78 <scope>test</scope>
79 </dependency>
80 <dependency>
81 <groupId>net.sf.opencsv</groupId>
82 <artifactId>opencsv</artifactId>
83 <version>2.0</version>
84 </dependency>
85 <dependency>
86 <groupId>org.hibernate</groupId>
87 <artifactId>hibernate-core</artifactId>
88 <version>3.6.5.Final</version>
89 </dependency>
90 <dependency>
91 <groupId>org.hibernate</groupId>
92 <artifactId>hibernate-entitymanager</artifactId>
93 <version>3.6.5.Final</version>
94 </dependency>
95 <dependency>
96 <groupId>log4j</groupId>
97 <artifactId>log4j</artifactId>
98 <version>1.2.14</version>
99 </dependency>
100 <dependency>
101 <groupId>commons-dbcp</groupId>
102 <artifactId>commons-dbcp</artifactId>
103 <version>1.4</version>
104 </dependency>
105 <dependency>
106 <groupId>postgresql</groupId>
107 <artifactId>postgresql</artifactId>
108 <version>8.4-702.jdbc4</version>
109 <scope>runtime</scope>
110 </dependency>
111 <dependency>
112 <groupId>org.hibernatespatial</groupId>
113 <artifactId>hibernate-spatial-postgis</artifactId>
114 <version>1.1</version>
115 </dependency>
116 <dependency>
117 <groupId>org.postgis</groupId>
118 <artifactId>postgis-jdbc</artifactId>
119 <version>1.3.3</version>
120 </dependency>
121 </dependencies>
122
123 <repositories>
124 <repository>
125 <id>repository.jboss.org/nexus</id>
126 <name>JBoss Repository - Nexus</name>
127 <url>http://repository.jboss.org/nexus/content/groups/public/</url>
128 </repository>
129 <repository>
130 <id>OSGEO GeoTools repo</id>
131 <url>http://download.osgeo.org/webdav/geotools</url>
132 </repository>
133 <repository>
134 <id>Hibernate Spatial repo</id>
135 <url>http://www.hibernatespatial.org/repository</url>
136 </repository>
137 </repositories>
138 </project>

http://dive4elements.wald.intevation.org