Skip to content

Commit

Permalink
keep as.sh/arthas-boot.jar in packaging result. #2900
Browse files Browse the repository at this point in the history
  • Loading branch information
hengyunabc committed Sep 14, 2024
1 parent 479f38b commit 7a97e4d
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions packaging/src/main/assembly/assembly.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1 http://maven.apache.org/xsd/assembly-1.1.1.xsd">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1 http://maven.apache.org/xsd/assembly-1.1.1.xsd">
<id>bin</id>
<includeBaseDirectory>false</includeBaseDirectory>
<formats>
Expand Down Expand Up @@ -37,6 +36,10 @@
<source>../boot/target/arthas-boot3-jar-with-dependencies.jar</source>
<destName>arthas-boot3.jar</destName>
</file>
<file>
<source>../boot/target/arthas-boot3-jar-with-dependencies.jar</source>
<destName>arthas-boot.jar</destName>
</file>
<file>
<source>../math-game/target/math-game.jar</source>
<destName>math-game.jar</destName>
Expand All @@ -47,10 +50,23 @@
<fileMode>0755</fileMode>
<filtered>true</filtered>
</file>
<file>
<source>../bin/install-local3.sh</source>
<fileMode>0755</fileMode>
<filtered>true</filtered>
<destName>install-local.sh</destName>
</file>

<file>
<source>../bin/as3.sh </source>
<fileMode>0755</fileMode>
</file>
<file>
<source>../bin/as3.sh </source>
<fileMode>0755</fileMode>
<destName>as.sh</destName>
</file>

<file>
<source>../bin/as.bat</source>
</file>
Expand Down

0 comments on commit 7a97e4d

Please sign in to comment.