Skip to content

Commit

Permalink
0001665: Upgrade JDBC drivers
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Apr 21, 2014
1 parent 6aad093 commit 2ac235e
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 24 deletions.
8 changes: 4 additions & 4 deletions symmetric-client/pom.xml
Expand Up @@ -119,12 +119,12 @@
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jumpmind.symmetric.jdbc</groupId>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jumpmind.symmetric.jdbc</groupId>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>provided</scope>
</dependency>
Expand All @@ -145,8 +145,8 @@
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jumpmind.symmetric.jdbc</groupId>
<artifactId>xerial-sqlite</artifactId>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
8 changes: 4 additions & 4 deletions symmetric-io/pom.xml
Expand Up @@ -68,12 +68,12 @@
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jumpmind.symmetric.jdbc</groupId>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.jumpmind.symmetric.jdbc</groupId>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<optional>true</optional>
</dependency>
Expand All @@ -94,8 +94,8 @@
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.jumpmind.symmetric.jdbc</groupId>
<artifactId>xerial-sqlite</artifactId>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<optional>true</optional>
</dependency>
<dependency>
Expand Down
8 changes: 4 additions & 4 deletions symmetric-jdbc/pom.xml
Expand Up @@ -58,12 +58,12 @@
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jumpmind.symmetric.jdbc</groupId>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.jumpmind.symmetric.jdbc</groupId>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<optional>true</optional>
</dependency>
Expand All @@ -84,8 +84,8 @@
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.jumpmind.symmetric.jdbc</groupId>
<artifactId>xerial-sqlite</artifactId>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<optional>true</optional>
</dependency>
<dependency>
Expand Down
22 changes: 11 additions & 11 deletions symmetric-parent/pom.xml
Expand Up @@ -19,13 +19,13 @@
<properties>
<version.springframwork>3.1.2.RELEASE</version.springframwork>
<version.jetty>7.6.3.v20120416</version.jetty>
<version.derby>10.9.1.0</version.derby>
<version.hsqldb>2.2.8</version.hsqldb>
<version.h2>1.3.164</version.h2>
<version.sqlite>3.7.15.SNAPSHOT.2</version.sqlite>
<version.postgresql>9.2-1002-jdbc4</version.postgresql>
<version.mysql>5.1.17</version.mysql>
<version.mariadb>1.1.1</version.mariadb>
<version.derby>10.10.2.0</version.derby>
<version.hsqldb>2.3.2</version.hsqldb>
<version.h2>1.4.177</version.h2>
<version.sqlite>3.7.15-M1</version.sqlite>
<version.postgresql>9.3-1101-jdbc41</version.postgresql>
<version.mysql>5.1.30</version.mysql>
<version.mariadb>1.1.7</version.mariadb>
<version.slf4j>1.6.4</version.slf4j>
<version.powermock>1.5.3</version.powermock>
<test.root>h2</test.root>
Expand Down Expand Up @@ -894,12 +894,12 @@
<version>${version.mysql}</version>
</dependency>
<dependency>
<groupId>org.jumpmind.symmetric.jdbc</groupId>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>${version.mariadb}</version>
</dependency>
<dependency>
<groupId>org.jumpmind.symmetric.jdbc</groupId>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>${version.postgresql}</version>
</dependency>
Expand All @@ -920,8 +920,8 @@
<version>${version.h2}</version>
</dependency>
<dependency>
<groupId>org.jumpmind.symmetric.jdbc</groupId>
<artifactId>xerial-sqlite</artifactId>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>${version.sqlite}</version>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion symmetric-postgres/pom.xml
Expand Up @@ -40,7 +40,7 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jumpmind.symmetric.jdbc</groupId>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<optional>true</optional>
</dependency>
Expand Down

0 comments on commit 2ac235e

Please sign in to comment.