2018-02-10 16:42:06 +07:00
|
|
|
<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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.idempiere</groupId>
|
|
|
|
<artifactId>org.idempiere.parent</artifactId>
|
2021-09-04 21:12:10 +07:00
|
|
|
<version>${revision}</version>
|
2018-02-10 16:42:06 +07:00
|
|
|
<relativePath>../org.idempiere.parent/pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
<artifactId>org.compiere.db.oracle.provider</artifactId>
|
|
|
|
<packaging>eclipse-plugin</packaging>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
2022-09-10 17:21:57 +07:00
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
|
<artifactId>HikariCP</artifactId>
|
|
|
|
<version>5.0.1</version>
|
|
|
|
</artifactItem>
|
2020-10-31 05:53:36 +07:00
|
|
|
<artifactItem>
|
|
|
|
<groupId>com.oracle.database.jdbc</groupId>
|
|
|
|
<artifactId>ojdbc10</artifactId>
|
2021-09-04 21:12:10 +07:00
|
|
|
<version>19.12.0.0</version>
|
2020-10-31 05:53:36 +07:00
|
|
|
</artifactItem>
|
2018-02-10 16:42:06 +07:00
|
|
|
</artifactItems>
|
|
|
|
<outputDirectory>lib</outputDirectory>
|
|
|
|
<stripVersion>true</stripVersion>
|
|
|
|
<overWriteReleases>true</overWriteReleases>
|
|
|
|
<overWriteSnapshots>true</overWriteSnapshots>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|