Skip to content

Commit

Permalink
1,添加all in one的打包构建
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamlike-ocean committed Feb 4, 2023
1 parent 55f483b commit 842aaa6
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions panama-uring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,28 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<finalName>${artifactId}-${panama.version}-all-release</finalName>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
<executions>
<execution>
<id>package-all-dependency</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

</project>

0 comments on commit 842aaa6

Please sign in to comment.