Add Maven descriptor to the jar

master
Graham 5 years ago
parent ccc7d69129
commit 719226c894
  1. 3
      pom.properties
  2. 10
      src/assembly/jar.xml

@ -0,0 +1,3 @@
groupId=${project.groupId}
artifactId=${project.artifactId}
version=${project.version}

@ -16,5 +16,15 @@
<outputDirectory>natives/linux-amd64</outputDirectory>
<destName>libjaggl_dri.so</destName>
</file>
<!-- workaround for https://issues.apache.org/jira/browse/MASSEMBLY-835 -->
<file>
<source>pom.xml</source>
<outputDirectory>META-INF/maven/${project.groupId}/${project.artifactId}</outputDirectory>
</file>
<file>
<source>pom.properties</source>
<outputDirectory>META-INF/maven/${project.groupId}/${project.artifactId}</outputDirectory>
<filtered>true</filtered>
</file>
</files>
</assembly>

Loading…
Cancel
Save