Skip to content

Commit 282680d

Browse files
sebasbaumhphillipross
authored andcommitted
PostGIS JDBC driver should not depend on a specific logging framework. (#41)
Currently using the PostGIS JDBC driver draws in slf4j and logback dependencies. The driver itself only uses java.util.logging classes except for tests. Therefore change the dependencies to test scope.
1 parent 1c3f936 commit 282680d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,16 +136,19 @@
136136
<groupId>ch.qos.logback</groupId>
137137
<artifactId>logback-classic</artifactId>
138138
<version>${dependency.logback.version}</version>
139+
<scope>test</scope>
139140
</dependency>
140141
<dependency>
141142
<groupId>ch.qos.logback</groupId>
142143
<artifactId>logback-core</artifactId>
143144
<version>${dependency.logback.version}</version>
145+
<scope>test</scope>
144146
</dependency>
145147
<dependency>
146148
<groupId>org.slf4j</groupId>
147149
<artifactId>slf4j-api</artifactId>
148150
<version>${dependency.slfj.version}</version>
151+
<scope>test</scope>
149152
</dependency>
150153
<dependency>
151154
<groupId>org.testng</groupId>

0 commit comments

Comments
 (0)