Skip to content

Commit 405f6b0

Browse files
authored
Updated jnr-unixsocket and move to asm 7.0. (#117)
* Replace jetty-unixsocket with jnr-unixsocket (and bump version). * Exclude asm and replace with 7.0 * Move jnr-unixsocket dep into parent pom. * Removed whitespace in pom.
1 parent 8c9d747 commit 405f6b0

File tree

5 files changed

+19
-20
lines changed

5 files changed

+19
-20
lines changed

connector-j-5/pom.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,5 @@
2929
<artifactId>jdbc-socket-factory-core</artifactId>
3030
<version>1.0.12-SNAPSHOT</version>
3131
</dependency>
32-
<dependency>
33-
<groupId>com.github.jnr</groupId>
34-
<artifactId>jnr-unixsocket</artifactId>
35-
<version>0.18</version>
36-
</dependency>
3732
</dependencies>
3833
</project>

connector-j-6/pom.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,6 @@
2929
<artifactId>jdbc-socket-factory-core</artifactId>
3030
<version>1.0.12-SNAPSHOT</version>
3131
</dependency>
32-
<dependency>
33-
<groupId>org.eclipse.jetty</groupId>
34-
<artifactId>jetty-unixsocket</artifactId>
35-
<version>9.4.8.v20171121</version>
36-
</dependency>
3732
</dependencies>
3833

3934
</project>

connector-j-8/pom.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,6 @@
2929
<artifactId>jdbc-socket-factory-core</artifactId>
3030
<version>1.0.12-SNAPSHOT</version>
3131
</dependency>
32-
<dependency>
33-
<groupId>org.eclipse.jetty</groupId>
34-
<artifactId>jetty-unixsocket</artifactId>
35-
<version>9.4.8.v20171121</version>
36-
</dependency>
3732
</dependencies>
3833

3934
</project>

pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,25 @@
5656
<module>postgres</module>
5757
</modules>
5858

59+
<dependencies>
60+
<dependency>
61+
<groupId>com.github.jnr</groupId>
62+
<artifactId>jnr-unixsocket</artifactId>
63+
<version>0.21</version>
64+
<exclusions>
65+
<exclusion>
66+
<groupId>org.ow2.asm</groupId>
67+
<artifactId>asm-util</artifactId>
68+
</exclusion>
69+
</exclusions>
70+
</dependency>
71+
<dependency> <!-- Allows jnr-unixsocket Java11 compatibility -->
72+
<groupId>org.ow2.asm</groupId>
73+
<artifactId>asm-util</artifactId>
74+
<version>7.0</version>
75+
</dependency>
76+
</dependencies>
77+
5978
<build>
6079
<plugins>
6180
<plugin>

postgres/pom.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,6 @@
2525
<artifactId>jdbc-socket-factory-core</artifactId>
2626
<version>1.0.12-SNAPSHOT</version>
2727
</dependency>
28-
<dependency>
29-
<groupId>com.github.jnr</groupId>
30-
<artifactId>jnr-unixsocket</artifactId>
31-
<version>0.18</version>
32-
</dependency>
3328
</dependencies>
3429

3530
</project>

0 commit comments

Comments
 (0)