Skip to content

Commit 17d4096

Browse files
committed
Bump version and removed the shade plugin to use module system
1 parent 4507a48 commit 17d4096

File tree

1 file changed

+14
-15
lines changed

1 file changed

+14
-15
lines changed

pom.xml

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>dev.despical</groupId>
66
<artifactId>command-framework</artifactId>
7-
<version>1.5.5</version>
7+
<version>1.5.6</version>
88

99
<name>Command Framework</name>
1010
<inceptionYear>2020</inceptionYear>
@@ -109,24 +109,23 @@
109109
</plugin>
110110
<plugin>
111111
<groupId>org.apache.maven.plugins</groupId>
112-
<artifactId>maven-shade-plugin</artifactId>
113-
<version>3.6.0</version>
114-
<executions>
115-
<execution>
116-
<phase>package</phase>
117-
<goals>
118-
<goal>shade</goal>
119-
</goals>
120-
<configuration>
121-
<createDependencyReducedPom>false</createDependencyReducedPom>
122-
</configuration>
123-
</execution>
124-
</executions>
112+
<artifactId>maven-jar-plugin</artifactId>
113+
<version>3.4.2</version>
114+
<configuration>
115+
<archive>
116+
<manifestEntries>
117+
<Automatic-Module-Name>dev.despical.commandframework</Automatic-Module-Name>
118+
</manifestEntries>
119+
</archive>
120+
</configuration>
125121
</plugin>
126122
<plugin>
127123
<groupId>org.apache.maven.plugins</groupId>
128124
<artifactId>maven-surefire-plugin</artifactId>
129-
<version>3.5.2</version>
125+
<version>3.5.4</version>
126+
<configuration>
127+
<useModulePath>false</useModulePath>
128+
</configuration>
130129
</plugin>
131130
</plugins>
132131
</build>

0 commit comments

Comments
 (0)