Skip to content

Commit

Permalink
SQLITE Database fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Smudgge committed Jun 10, 2024
1 parent fad0bef commit 0d98978
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
8 changes: 6 additions & 2 deletions dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.github.smuddgge</groupId>
<artifactId>Leaf</artifactId>
<name>Leaf</name>
<version>5.2.1</version>
<version>5.2.2</version>
<description>A velocity utility plugin</description>
<build>
<resources>
Expand All @@ -28,7 +28,11 @@
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>true</minimizeJar>
<transformers>
<transformer>
<resource>META-INF/services/java.sql.Driver</resource>
</transformer>
</transformers>
<artifactSet>
<excludes>
<exclude>jupiter:*</exclude>
Expand Down
8 changes: 6 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.github.smuddgge</groupId>
<artifactId>Leaf</artifactId>
<version>5.2.1</version>
<version>5.2.2</version>
<packaging>jar</packaging>

<name>Leaf</name>
Expand Down Expand Up @@ -240,7 +240,11 @@
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>true</minimizeJar>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
<resource>META-INF/services/java.sql.Driver</resource>
</transformer>
</transformers>
<artifactSet>
<excludes>
<exclude>jupiter:*</exclude>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/github/smuddgge/leaf/Leaf.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
@Plugin(
id = "leaf",
name = "Leaf",
version = "5.2.1",
version = "5.2.2",
description = "A velocity utility plugin",
authors = {"Smudge"}
)
Expand Down

0 comments on commit 0d98978

Please sign in to comment.