Skip to content

Commit

Permalink
Update to create jar with deps
Browse files Browse the repository at this point in the history
  • Loading branch information
haynescd committed Nov 10, 2023
1 parent e2351fc commit 3b87a82
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -211,13 +211,34 @@
<version>${byte_buddy.version}</version>
</dependency>


<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql_driver.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>create-my-bundle</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>


<repositories>
Expand Down

0 comments on commit 3b87a82

Please sign in to comment.