Skip to content

Commit 713343a

Browse files
committed
exclude the database drivers by default
1 parent 54a33cd commit 713343a

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

storage/sql/mysql/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@
2222
<groupId>me.hsgamer</groupId>
2323
<artifactId>hscore-database-driver-mysql</artifactId>
2424
<version>${core.version}</version>
25+
<exclusions>
26+
<exclusion>
27+
<groupId>com.mysql</groupId>
28+
<artifactId>mysql-connector-j</artifactId>
29+
</exclusion>
30+
</exclusions>
2531
</dependency>
2632
</dependencies>
2733
</project>

storage/sql/sqlite/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@
2222
<groupId>me.hsgamer</groupId>
2323
<artifactId>hscore-database-driver-sqlite</artifactId>
2424
<version>${core.version}</version>
25+
<exclusions>
26+
<exclusion>
27+
<groupId>org.xerial</groupId>
28+
<artifactId>sqlite-jdbc</artifactId>
29+
</exclusion>
30+
</exclusions>
2531
</dependency>
2632
</dependencies>
2733
</project>

0 commit comments

Comments
 (0)