Skip to content

Commit

Permalink
Also make it easy to build an uber jar for jna-inchi-core
Browse files Browse the repository at this point in the history
  • Loading branch information
dan2097 committed Dec 12, 2021
1 parent 6a0d018 commit f5431f2
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions jna-inchi-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,27 @@
<artifactId>jna-inchi-core</artifactId>
<name>JNA InChI Core</name>
<description>Functionality for calling the InChI library from Java (binaries included)</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<configuration>
<finalName>jna-inchi-core</finalName>
<createDependencyReducedPom>false</createDependencyReducedPom>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>io.github.dan2097</groupId>
Expand Down

0 comments on commit f5431f2

Please sign in to comment.