Skip to content
This repository was archived by the owner on Nov 10, 2021. It is now read-only.

Commit 8891d18

Browse files
committed
Edit pom.xml, version 0.0.3
1 parent c98f7e0 commit 8891d18

File tree

1 file changed

+51
-9
lines changed

1 file changed

+51
-9
lines changed

pom.xml

Lines changed: 51 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.froxynetwork</groupId>
77
<artifactId>FroxyAPI</artifactId>
8-
<version>0.0.2</version>
8+
<version>0.0.3</version>
99
<packaging>jar</packaging>
1010

1111
<name>FroxyAPI</name>
@@ -26,6 +26,55 @@
2626
</developer>
2727
</developers>
2828

29+
<build>
30+
<defaultGoal>clean install</defaultGoal>
31+
<finalName>FroxyAPI-${project.version}</finalName>
32+
<plugins>
33+
<plugin>
34+
<groupId>org.apache.maven.plugins</groupId>
35+
<artifactId>maven-compiler-plugin</artifactId>
36+
<version>3.8.0</version>
37+
<configuration>
38+
<source>1.8</source>
39+
<target>1.8</target>
40+
</configuration>
41+
</plugin>
42+
<plugin>
43+
<groupId>org.apache.maven.plugins</groupId>
44+
<artifactId>maven-shade-plugin</artifactId>
45+
<version>3.2.1</version>
46+
<executions>
47+
<execution>
48+
<id>shaded</id>
49+
<phase>package</phase>
50+
<goals>
51+
<goal>shade</goal>
52+
</goals>
53+
<configuration>
54+
<shadedArtifactAttached>false</shadedArtifactAttached>
55+
<createDependencyReducedPom>false</createDependencyReducedPom>
56+
<artifactSet>
57+
<excludes>
58+
<exclude>org.projectlombok:lombok</exclude>
59+
</excludes>
60+
</artifactSet>
61+
<filters>
62+
<filter>
63+
<artifact>*:*</artifact>
64+
<excludes>
65+
<exclude>META-INF/*.SF</exclude>
66+
<exclude>META-INF/*.DSA</exclude>
67+
<exclude>META-INF/*.RSA</exclude>
68+
</excludes>
69+
</filter>
70+
</filters>
71+
</configuration>
72+
</execution>
73+
</executions>
74+
</plugin>
75+
</plugins>
76+
</build>
77+
2978
<!-- Configuration of repositories -->
3079
<repositories>
3180
<repository>
@@ -41,16 +90,10 @@
4190

4291
<dependencies>
4392
<!-- Logging -->
44-
<dependency>
45-
<groupId>org.slf4j</groupId>
46-
<artifactId>slf4j-api</artifactId>
47-
<version>1.7.26</version>
48-
<scope>compile</scope>
49-
</dependency>
5093
<dependency>
5194
<groupId>org.slf4j</groupId>
5295
<artifactId>slf4j-log4j12</artifactId>
53-
<version>1.7.6</version>
96+
<version>1.7.26</version>
5497
<scope>compile</scope>
5598
</dependency>
5699

@@ -59,7 +102,6 @@
59102
<groupId>org.projectlombok</groupId>
60103
<artifactId>lombok</artifactId>
61104
<version>1.18.6</version>
62-
<scope>provided</scope>
63105
</dependency>
64106

65107
<!--Spigot API -->

0 commit comments

Comments
 (0)