|
|
|
@ -133,5 +133,61 @@
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>oracle</id>
|
|
|
|
|
<properties>
|
|
|
|
|
<oracle.driver.artifact>ojdbc6</oracle.driver.artifact>
|
|
|
|
|
<oracle.driver.version>11.2.0.4</oracle.driver.version>
|
|
|
|
|
</properties>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.oracle.jdbc</groupId>
|
|
|
|
|
<artifactId>${oracle.driver.artifact}</artifactId>
|
|
|
|
|
<version>${oracle.driver.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
<repositories>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>maven.oracle.com</id>
|
|
|
|
|
<releases>
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
</releases>
|
|
|
|
|
<snapshots>
|
|
|
|
|
<enabled>false</enabled>
|
|
|
|
|
</snapshots>
|
|
|
|
|
<url>https://maven.oracle.com</url>
|
|
|
|
|
<layout>default</layout>
|
|
|
|
|
</repository>
|
|
|
|
|
</repositories>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<compilerArgs>
|
|
|
|
|
<compilerArg>-AjdbcMapper.databaseType=ORACLE</compilerArg>
|
|
|
|
|
</compilerArgs>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>unnest</id>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<compilerArgs>
|
|
|
|
|
<compilerArg>-AjdbcMapper.databaseType=UNNEST</compilerArg>
|
|
|
|
|
</compilerArgs>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
|
|
|
|
</profiles>
|
|
|
|
|
</project>
|