Skip to content

Commit

Permalink
dbeaver/pro#3648 Shaded jar
Browse files Browse the repository at this point in the history
  • Loading branch information
serge-rider committed Nov 20, 2024
1 parent 1421e06 commit c44b380
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion com.dbeaver.jdbc.driver.libsql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<id>assemble-driver-dist</id>
Expand All @@ -105,6 +104,30 @@
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<id>build-main-jar</id>
<configuration>
<artifactSet>
<excludes>
<exclude>junit:junit</exclude>
<exclude>jmock:jmock</exclude>
</excludes>
</artifactSet>
<finalName>dbeaver-jdbc-libsql-full-${project.version}</finalName>
</configuration>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>

</plugins>
</build>

Expand Down

0 comments on commit c44b380

Please sign in to comment.