|
5 | 5 |
|
6 | 6 | <groupId>com.froxynetwork</groupId> |
7 | 7 | <artifactId>FroxyAPI</artifactId> |
8 | | - <version>0.0.2</version> |
| 8 | + <version>0.0.3</version> |
9 | 9 | <packaging>jar</packaging> |
10 | 10 |
|
11 | 11 | <name>FroxyAPI</name> |
|
26 | 26 | </developer> |
27 | 27 | </developers> |
28 | 28 |
|
| 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 | + |
29 | 78 | <!-- Configuration of repositories --> |
30 | 79 | <repositories> |
31 | 80 | <repository> |
|
41 | 90 |
|
42 | 91 | <dependencies> |
43 | 92 | <!-- 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> |
50 | 93 | <dependency> |
51 | 94 | <groupId>org.slf4j</groupId> |
52 | 95 | <artifactId>slf4j-log4j12</artifactId> |
53 | | - <version>1.7.6</version> |
| 96 | + <version>1.7.26</version> |
54 | 97 | <scope>compile</scope> |
55 | 98 | </dependency> |
56 | 99 |
|
|
59 | 102 | <groupId>org.projectlombok</groupId> |
60 | 103 | <artifactId>lombok</artifactId> |
61 | 104 | <version>1.18.6</version> |
62 | | - <scope>provided</scope> |
63 | 105 | </dependency> |
64 | 106 |
|
65 | 107 | <!--Spigot API --> |
|
0 commit comments