Skip to content

Commit a37a357

Browse files
znvbneaRaja Maragani
authored and
Raja Maragani
committed
Added maven assembly plugin to make it fat jar and updated parent version (#88)
1 parent e5b93ab commit a37a357

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.4.7
2+
- Updated parent version and added maven assembly plugin to make it fat jar
3+
14
## 0.4.6
25
- Migrated from gradle to maven
36

pom.xml

+20-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
<parent>
55
<groupId>com.github.Ericsson</groupId>
66
<artifactId>eiffel-remrem-parent</artifactId>
7-
<version>0.0.2</version>
7+
<version>0.0.3</version>
88
</parent>
99
<artifactId>eiffel-remrem-semantics</artifactId>
10-
<version>0.4.6</version>
10+
<version>0.4.7</version>
1111
<packaging>jar</packaging>
1212
<properties>
1313
<eclipse.jgit.version>5.0.1.201806211838-r</eclipse.jgit.version>
@@ -161,6 +161,11 @@
161161
<groupId>org.apache.maven.plugins</groupId>
162162
<artifactId>maven-jar-plugin</artifactId>
163163
<version>3.1.0</version>
164+
</plugin>
165+
<plugin>
166+
<groupId>org.apache.maven.plugins</groupId>
167+
<artifactId>maven-assembly-plugin</artifactId>
168+
<version>3.0.0</version>
164169
<configuration>
165170
<archive>
166171
<index>true</index>
@@ -172,7 +177,20 @@
172177
<semanticsVersion>${project.version}</semanticsVersion>
173178
</manifestEntries>
174179
</archive>
180+
<appendAssemblyId>false</appendAssemblyId>
181+
<descriptorRefs>
182+
<descriptorRef>jar-with-dependencies</descriptorRef>
183+
</descriptorRefs>
175184
</configuration>
185+
<executions>
186+
<execution>
187+
<id>make-assembly</id>
188+
<phase>package</phase>
189+
<goals>
190+
<goal>single</goal>
191+
</goals>
192+
</execution>
193+
</executions>
176194
</plugin>
177195
<plugin>
178196
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)