純java項目maven 打可執行包
<build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>3.5.0</version> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <archive> <manifest> <mainClass>org.example.Main</mainClass> </manifest> </archive> </configuration> <executions> <execution> <id>make-assembly</id> <!-- this is used for inheritance merges --> <phase>package</phase> <!-- bind to the packaging phase --> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build>
參考 https://maven.apache.org/plugins/maven-assembly-plugin/usage.html
posted on 2023-05-09 13:44 cococooder 閱讀(25) 評論(0) 收藏 舉報
浙公網安備 33010602011771號