Skip to content

Commit

Permalink
chore(engine): remove oracle 10 code
Browse files Browse the repository at this point in the history
Related to CAM-11104
  • Loading branch information
koevskinikola authored and mboskamp committed Dec 2, 2019
1 parent 68dfbd4 commit f509e3b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 58 deletions.
36 changes: 0 additions & 36 deletions database/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
<version.oracle-12>12.1.0.2</version.oracle-12>
<version.oracle-18>18.3.0.0</version.oracle-18>
<version.oracle-11>11.2.0.4</version.oracle-11>
<version.oracle-10>10.2.0.5</version.oracle-10>
<version.oracle>${version.oracle-11}</version.oracle>
<version.mariadb>1.1.8</version.mariadb>
<version.mariadb.galera>1.6.3</version.mariadb.galera>
Expand Down Expand Up @@ -62,11 +61,6 @@
<artifactId>ojdbc8</artifactId>
<version>${version.oracle}</version>
</dependency>
<dependency>
<groupId>com.oracle.jdbc</groupId>
<artifactId>ojdbc14</artifactId>
<version>${version.oracle-10}</version>
</dependency>
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
Expand Down Expand Up @@ -339,36 +333,6 @@
<database.datasource.class>oracle.jdbc.pool.OracleDataSource</database.datasource.class>
</properties>
</profile>
<profile>
<id>oracle-10</id>
<properties>
<version.oracle>${version.oracle-10}</version.oracle>
</properties>
<dependencies>
<dependency>
<groupId>com.oracle.jdbc</groupId>
<artifactId>ojdbc14</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>sql-maven-plugin</artifactId>
<dependencies>
<dependency>
<groupId>com.oracle.jdbc</groupId>
<artifactId>ojdbc14</artifactId>
<version>${version.oracle}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
<profile>
<id>oracle-11</id>
<properties>
Expand Down
22 changes: 0 additions & 22 deletions engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -542,28 +542,6 @@
</build>
</profile>

<profile>
<id>oracle-10</id>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<failIfNoTests>false</failIfNoTests>
<trimStackTrace>false</trimStackTrace>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
<excludes>
<exclude>**/ManagementServiceTest.java</exclude>

<exclude>**/*TestCase.java</exclude>
<exclude>**/RepeatingServiceTaskTest.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</profile>

<profile>
<id>mariadb-galera</id>
<build>
Expand Down

0 comments on commit f509e3b

Please sign in to comment.