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

Commit

Permalink
Edit pom.xml, version 0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
0ddlyoko committed May 26, 2019
1 parent 037f07f commit e15b800
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 9 deletions.
60 changes: 51 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.froxynetwork</groupId>
<artifactId>FroxyCore</artifactId>
<version>0.0.2</version>
<version>0.0.3</version>
<packaging>jar</packaging>

<name>FroxyCore</name>
Expand Down Expand Up @@ -38,19 +38,61 @@
<url>https://jitpack.io</url>
</repository>
</repositories>
<build>
<defaultGoal>clean install</defaultGoal>
<finalName>FroxyCore-${project.version}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>shaded</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadedArtifactAttached>false</shadedArtifactAttached>
<createDependencyReducedPom>false</createDependencyReducedPom>
<artifactSet>
<excludes>
<exclude>org.projectlombok:lombok</exclude>
</excludes>
</artifactSet>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>
<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.26</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.6</version>
<version>1.7.26</version>
<scope>compile</scope>
</dependency>

Expand All @@ -59,7 +101,6 @@
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.6</version>
<scope>provided</scope>
</dependency>

<!-- Network -->
Expand All @@ -81,6 +122,7 @@
<groupId>com.github.froxynetwork</groupId>
<artifactId>froxyapi</artifactId>
<version>0.0.2</version>
<scope>provided</scope>
</dependency>

<!--Spigot API -->
Expand Down
Empty file added src/main/resources/plugin.yml
Empty file.

0 comments on commit e15b800

Please sign in to comment.