Skip to content

Commit c8cdb6a

Browse files
author
Swanis
committed
Updated pom.xml
1 parent 587eaa5 commit c8cdb6a

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,32 @@
1313
<maven.compiler.target>16</maven.compiler.target>
1414
</properties>
1515

16+
<build>
17+
<plugins>
18+
<plugin>
19+
<groupId>org.apache.maven.plugins</groupId>
20+
<artifactId>maven-shade-plugin</artifactId>
21+
<version>3.2.1</version>
22+
<configuration>
23+
</configuration>
24+
<executions>
25+
<execution>
26+
<phase>package</phase>
27+
<goals>
28+
<goal>shade</goal>
29+
</goals>
30+
</execution>
31+
</executions>
32+
</plugin>
33+
</plugins>
34+
</build>
35+
1636
<dependencies>
1737
<dependency>
1838
<groupId>com.google.code.gson</groupId>
1939
<artifactId>gson</artifactId>
2040
<version>2.8.7</version>
41+
<scope>compile</scope>
2142
</dependency>
2243
</dependencies>
2344
</project>

0 commit comments

Comments
 (0)