Skip to content
This repository was archived by the owner on Jan 18, 2024. It is now read-only.

Commit a57e157

Browse files
committed
added profile for xdev-ide fat jar
1 parent e32b6d8 commit a57e157

1 file changed

Lines changed: 39 additions & 0 deletions

File tree

pom.xml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@
7676

7777

7878
<build>
79+
7980
<plugins>
8081
<plugin>
8182
<groupId>org.apache.maven.plugins</groupId>
@@ -114,10 +115,17 @@
114115
</plugin>
115116

116117
<plugin>
118+
<groupId>org.apache.maven.plugins</groupId>
117119
<artifactId>maven-surefire-plugin</artifactId>
118120
<version>3.0.0-M5</version>
119121
</plugin>
120122

123+
<plugin>
124+
<groupId>org.apache.maven.plugins</groupId>
125+
<artifactId>maven-assembly-plugin</artifactId>
126+
<version>3.3.0</version>
127+
</plugin>
128+
121129
<plugin>
122130
<groupId>org.apache.maven.plugins</groupId>
123131
<artifactId>maven-enforcer-plugin</artifactId>
@@ -246,6 +254,8 @@
246254
</execution>
247255
</executions>
248256
</plugin>
257+
258+
249259
</plugins>
250260
</build>
251261

@@ -309,6 +319,35 @@
309319
</dependencies>
310320
</profile>
311321

322+
<profile>
323+
<id>xdev-ide</id>
324+
<build>
325+
<plugins>
326+
<plugin>
327+
328+
<artifactId>maven-assembly-plugin</artifactId>
329+
<configuration>
330+
<descriptorRefs>
331+
<descriptorRef>jar-with-dependencies</descriptorRef>
332+
</descriptorRefs>
333+
</configuration>
334+
<executions>
335+
<execution>
336+
<id>make-assembly</id>
337+
<phase>package</phase>
338+
<goals>
339+
<goal>single</goal>
340+
</goals>
341+
</execution>
342+
</executions>
343+
</plugin>
344+
345+
</plugins>
346+
</build>
347+
348+
</profile>
349+
350+
312351
<profile>
313352
<id>ossrh</id>
314353

0 commit comments

Comments
 (0)