comparison etl/pom-oracle.xml @ 7730:e1b831fe435a slt-simplify-cross-sections

Merged default into slt-simplify-cross-sections branch and updated package and class names.
author Tom Gottfried <tom@intevation.de>
date Mon, 20 Jan 2014 14:04:20 +0100
parents 33e514a0c6b7
children cb6514faf0d9
comparison
equal deleted inserted replaced
5084:ca45dd039b54 7730:e1b831fe435a
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>org.dive4elements.river</groupId>
5 <artifactId>river-etl</artifactId>
6 <version>1.0-SNAPSHOT</version>
7 <packaging>jar</packaging>
8 <name>org.dive4elements.river.etl</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>org.dive4elements.river.etl.aft.Sync</mainClass>
31 <packageName>org.dive4elements.river.etl.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>org.dive4elements.river.etl.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>

http://dive4elements.wald.intevation.org