Not: Bir yaylı önyükleme uygulamasıysanız, cevabın sonunu okuyun
Aşağıdaki eklentiyi ekleyin pom.xml
En son sürüme şu adresten ulaşabilirsiniz:
...
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>CHOOSE LATEST VERSION HERE</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>assemble-all</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
...
Bu eklentiyi yapılandırdıktan sonra, çalıştırma mvn package
iki kavanoz oluşturacaktır: biri yalnızca proje sınıflarını içeren ve tüm bağımlılıkları "-jar-ile-bağımlılıklar" sonekine sahip ikinci bir yağ kavanozu.
classpath
çalışma zamanında doğru kurulumu istiyorsanız , aşağıdaki eklentiyi de ekleyin
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>fully.qualified.MainClass</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
İlkbahar önyükleme uygulaması için sadece aşağıdaki eklentiyi kullanın (uygun sürümünü seçin)
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
<mainClass>${start-class}</mainClass>
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>