|
@@ -18,6 +18,29 @@
|
|
</resource>
|
|
</resource>
|
|
</resources>
|
|
</resources>
|
|
<plugins>
|
|
<plugins>
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
+ <artifactId>maven-install-plugin</artifactId>
|
|
|
|
+ <version>2.3.1</version>
|
|
|
|
+ <executions>
|
|
|
|
+ <execution>
|
|
|
|
+ <id>install-oracle-jdbc</id>
|
|
|
|
+ <goals>
|
|
|
|
+ <goal>install-file</goal>
|
|
|
|
+ </goals>
|
|
|
|
+ <phase>clean</phase>
|
|
|
|
+ <configuration>
|
|
|
|
+ <groupId>com.oracle.jdbc</groupId>
|
|
|
|
+ <artifactId>ojdbc7</artifactId>
|
|
|
|
+ <version>12.1.0.2</version>
|
|
|
|
+ <packaging>jar</packaging>
|
|
|
|
+ <generatePom>true</generatePom>
|
|
|
|
+ <createChecksum>true</createChecksum>
|
|
|
|
+ <file>${project.basedir}/lib/ojdbc7.jar</file>
|
|
|
|
+ </configuration>
|
|
|
|
+ </execution>
|
|
|
|
+ </executions>
|
|
|
|
+ </plugin>
|
|
<plugin>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.3</version>
|
|
<version>3.3</version>
|
|
@@ -100,6 +123,11 @@
|
|
<artifactId>postgresql</artifactId>
|
|
<artifactId>postgresql</artifactId>
|
|
<version>9.1-901.jdbc4</version>
|
|
<version>9.1-901.jdbc4</version>
|
|
</dependency>
|
|
</dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.oracle.jdbc</groupId>
|
|
|
|
+ <artifactId>ojdbc7</artifactId>
|
|
|
|
+ <version>12.1.0.2</version>
|
|
|
|
+ </dependency>
|
|
<!-- h2 allows us to create tables from CSV files in an easy way -->
|
|
<!-- h2 allows us to create tables from CSV files in an easy way -->
|
|
<dependency>
|
|
<dependency>
|
|
<groupId>com.h2database</groupId>
|
|
<groupId>com.h2database</groupId>
|