본문 바로가기

Snippets

Maven으로 excutable jar 빌드

336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

<build>

<plugins>

<plugin>

<groupId>org.apache.maven.plugins</groupId>

<artifactId>maven-assembly-plugin</artifactId>

<executions>

<execution>

<goals>

<goal>attached</goal>

</goals>

<phase>package</phase>

<configuration>

<descriptorRefs>

<descriptorRef>jar-with-dependencies</descriptorRef>

</descriptorRefs>

<archive>

<manifest>

<mainClass>com.mintocean.main.Test</mainClass>

</manifest>

</archive>

</configuration>

</execution>

</executions>

</plugin>

</plugins>

</build>


추가 후 run as -> maven install 하게 되면 targer 폴더에 dependency 포함한 jar 와 포함하지 않은 jar 두가지 파일이 export 된다.