Mercurial > dive4elements > river
comparison etl/pom-oracle.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-aft/pom-oracle.xml@f72c253663fc |
children | 545b94ec2329 |
comparison
equal
deleted
inserted
replaced
5837:d9901a08d0a6 | 5838:5aa05a7a34b7 |
---|---|
1 <?xml version="1.0"?> | |
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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 <groupId>de.intevation</groupId> | |
5 <artifactId>de.intevation.aft</artifactId> | |
6 <version>1.0-SNAPSHOT</version> | |
7 <packaging>jar</packaging> | |
8 <name>de.intevation.aft</name> | |
9 <url>http://maven.apache.org</url> | |
10 <properties> | |
11 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
12 </properties> | |
13 <build> | |
14 <plugins> | |
15 <plugin> | |
16 <groupId>org.apache.maven.plugins</groupId> | |
17 <artifactId>maven-compiler-plugin</artifactId> | |
18 <version>2.0.2</version> | |
19 <configuration> | |
20 <source>1.6</source> | |
21 <target>1.6</target> | |
22 </configuration> | |
23 </plugin> | |
24 <plugin> | |
25 <groupId>org.apache.maven.plugins</groupId> | |
26 <artifactId>maven-jar-plugin</artifactId> | |
27 <configuration> | |
28 <archive> | |
29 <manifest> | |
30 <mainClass>de.intevation.aft.Sync</mainClass> | |
31 <packageName>de.intevation.aft</packageName> | |
32 </manifest> | |
33 </archive> | |
34 </configuration> | |
35 </plugin> | |
36 <plugin> | |
37 <artifactId>maven-assembly-plugin</artifactId> | |
38 <configuration> | |
39 <archive> | |
40 <manifest> | |
41 <mainClass>de.intevation.aft.Sync</mainClass> | |
42 </manifest> | |
43 </archive> | |
44 <descriptorRefs> | |
45 <descriptorRef>jar-with-dependencies</descriptorRef> | |
46 </descriptorRefs> | |
47 </configuration> | |
48 </plugin> | |
49 </plugins> | |
50 </build> | |
51 <dependencies> | |
52 <dependency> | |
53 <groupId>log4j</groupId> | |
54 <artifactId>log4j</artifactId> | |
55 <version>1.2.14</version> | |
56 </dependency> | |
57 <dependency> | |
58 <groupId>org.xerial</groupId> | |
59 <artifactId>sqlite-jdbc</artifactId> | |
60 <version>3.7.2</version> | |
61 <scope>runtime</scope> | |
62 </dependency> | |
63 <dependency> | |
64 <groupId>postgresql</groupId> | |
65 <artifactId>postgresql</artifactId> | |
66 <version>8.4-702.jdbc4</version> | |
67 <scope>runtime</scope> | |
68 </dependency> | |
69 <dependency> | |
70 <groupId>ojdbc5.jar</groupId> | |
71 <artifactId>ojdbc5</artifactId> | |
72 <version>0</version> | |
73 </dependency> | |
74 </dependencies> | |
75 </project> |