We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60b73bd commit e1b59f1Copy full SHA for e1b59f1
pom.xml
@@ -99,6 +99,29 @@
99
</execution>
100
</executions>
101
</plugin>
102
+ <plugin>
103
+ <groupId>org.apache.maven.plugins</groupId>
104
+ <artifactId>maven-assembly-plugin</artifactId>
105
+ <executions>
106
+ <execution>
107
+ <id>assembly</id>
108
+ <phase>package</phase>
109
+ <goals>
110
+ <goal>single</goal>
111
+ </goals>
112
+ </execution>
113
+ </executions>
114
+ <configuration>
115
+ <finalName>
116
+ ${project.artifactId}-${project.version}-standalone
117
+ </finalName>
118
+ <attach>false</attach>
119
+ <appendAssemblyId>false</appendAssemblyId>
120
+ <descriptorRefs>
121
+ <descriptorRef>jar-with-dependencies</descriptorRef>
122
+ </descriptorRefs>
123
+ </configuration>
124
+ </plugin>
125
</plugins>
126
</build>
127
0 commit comments