Skip to content

Commit

Permalink
update JDBC Driver #470
Browse files Browse the repository at this point in the history
  • Loading branch information
btiwahorisu committed Dec 26, 2019
1 parent 83f0aeb commit 0c54809
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@
<!-- <version>${postgresql.version}</version> -->
<!-- </dependency> -->
<!-- <dependency> -->
<!-- <groupId>com.oracle.jdbc</groupId> -->
<!-- <artifactId>ojdbc8</artifactId> -->
<!-- <groupId>com.oracle.ojdbc</groupId> -->
<!-- <artifactId>ojdbc10</artifactId> -->
<!-- <version>${ojdbc.version}</version> -->
<!-- </dependency> -->
<!-- == End Database == -->
Expand Down Expand Up @@ -159,8 +159,8 @@
<maven-failsafe-plugin.version>2.19</maven-failsafe-plugin.version>
<maven-surefire-plugin.version>2.17</maven-surefire-plugin.version>
<!-- == Dependency Versions == -->
<postgresql.version>42.2.5</postgresql.version>
<ojdbc.version>18.3</ojdbc.version>
<postgresql.version>42.2.8</postgresql.version>
<ojdbc.version>19.3.0.0</ojdbc.version>
<dbunit.version>2.5.4</dbunit.version>
<spring.test.dbunit.version>1.3.0</spring.test.dbunit.version>
<!-- == Project Properties == -->
Expand Down
4 changes: 2 additions & 2 deletions projectName-domain/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@
<!-- <scope>test</scope> -->
<!-- </dependency> -->
<!-- <dependency> -->
<!-- <groupId>com.oracle.jdbc</groupId> -->
<!-- <artifactId>ojdbc8</artifactId> -->
<!-- <groupId>com.oracle.ojdbc</groupId> -->
<!-- <artifactId>ojdbc10</artifactId> -->
<!-- <scope>test</scope> -->
<!-- </dependency> -->
<!-- == End Database == -->
Expand Down
6 changes: 3 additions & 3 deletions projectName-initdb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@
<db.username>oracle</db.username>
<db.password>oracle</db.password>
<db.driver>oracle.jdbc.driver.OracleDriver</db.driver>
<db.groupId>com.oracle.jdbc</db.groupId>
<db.artifactId>ojdbc8</db.artifactId>
<db.version>${ojdbc8.version}</db.version>
<db.groupId>com.oracle.ojdbc</db.groupId>
<db.artifactId>ojdbc10</db.artifactId>
<db.version>${ojdbc.version}</db.version>
<db.delimiterType>row</db.delimiterType>
</properties>
</profile>
Expand Down
4 changes: 2 additions & 2 deletions projectName-selenium/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@
<!-- <scope>test</scope> -->
<!-- </dependency> -->
<!-- <dependency> -->
<!-- <groupId>com.oracle.jdbc</groupId> -->
<!-- <artifactId>ojdbc8</artifactId> -->
<!-- <groupId>com.oracle.ojdbc</groupId> -->
<!-- <artifactId>ojdbc10</artifactId> -->
<!-- <scope>test</scope> -->
<!-- </dependency> -->

Expand Down
4 changes: 2 additions & 2 deletions projectName-web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@
<!-- <scope>runtime</scope> -->
<!-- </dependency> -->
<!-- <dependency> -->
<!-- <groupId>com.oracle.jdbc</groupId> -->
<!-- <artifactId>ojdbc8</artifactId> -->
<!-- <groupId>com.oracle.ojdbc</groupId> -->
<!-- <artifactId>ojdbc10</artifactId> -->
<!-- <scope>runtime</scope> -->
<!-- </dependency> -->
<!-- == End Database == -->
Expand Down

0 comments on commit 0c54809

Please sign in to comment.