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 587eaa5 commit c8cdb6aCopy full SHA for c8cdb6a
pom.xml
@@ -13,11 +13,32 @@
13
<maven.compiler.target>16</maven.compiler.target>
14
</properties>
15
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
+
36
<dependencies>
37
<dependency>
38
<groupId>com.google.code.gson</groupId>
39
<artifactId>gson</artifactId>
40
<version>2.8.7</version>
41
+ <scope>compile</scope>
42
</dependency>
43
</dependencies>
44
</project>
0 commit comments