Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8caa89a

Browse files
committed
MySQL 8 support
1 parent a2f5249 commit 8caa89a

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

amplisync-core/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>SQLiteSyncCore</groupId>
88
<artifactId>SQLiteSyncCore</artifactId>
9-
<version>1.0.1</version>
9+
<version>1.0.2</version>
1010

1111
<repositories>
1212
<repository>
@@ -25,8 +25,8 @@
2525

2626
<packaging>jar</packaging>
2727
<properties>
28-
<jackson.version>2.8.5</jackson.version>
29-
<jersey2.version>2.25</jersey2.version>
28+
<jackson.version>2.9.9</jackson.version>
29+
<jersey2.version>2.25.1</jersey2.version>
3030
</properties>
3131
<dependencies>
3232
<dependency>
@@ -61,7 +61,7 @@
6161
<dependency>
6262
<groupId>mysql</groupId>
6363
<artifactId>mysql-connector-java</artifactId>
64-
<version>6.0.5</version>
64+
<version>8.0.16</version>
6565
</dependency>
6666
<dependency>
6767
<groupId>commons-io</groupId>
@@ -112,7 +112,7 @@
112112
<dependency>
113113
<groupId>com.mchange</groupId>
114114
<artifactId>c3p0</artifactId>
115-
<version>0.9.5.2</version>
115+
<version>0.9.5.4</version>
116116
</dependency>
117117
<dependency>
118118
<groupId>org.apache.maven.plugins</groupId>

amplisync-ws/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>com.sqlitesync.ws</groupId>
77
<artifactId>SqliteSync</artifactId>
8-
<version>1.0.1</version>
8+
<version>1.0.2</version>
99
<packaging>war</packaging>
1010

1111
<repositories>
@@ -23,18 +23,18 @@
2323
</repository>
2424
</repositories>
2525
<properties>
26-
<jersey2.version>2.25</jersey2.version>
2726
<jaxrs.version>2.0.1</jaxrs.version>
28-
<jackson.version>2.8.5</jackson.version>
27+
<jackson.version>2.9.9</jackson.version>
28+
<jersey2.version>2.25.1</jersey2.version>
2929
</properties>
3030
<dependencies>
3131
<dependency>
3232
<groupId>SQLiteSyncCore</groupId>
3333
<artifactId>SQLiteSyncCore</artifactId>
34-
<version>1.0.1</version>
34+
<version>1.0.2</version>
3535
<scope>system</scope>
3636
<systemPath>
37-
${project.basedir}/../sqlitesync-core/out/artifacts/SQLiteSyncCore_jar/SQLiteSyncCore.jar
37+
${project.basedir}/../amplisync-core/out/artifacts/SQLiteSyncCore_jar/SQLiteSyncCore.jar
3838
</systemPath>
3939
</dependency>
4040
<!-- JAX-RS -->

0 commit comments

Comments
 (0)