|
5 | 5 |
|
6 | 6 | <groupId>com.froxynetwork</groupId> |
7 | 7 | <artifactId>FroxyGame</artifactId> |
8 | | - <version>0.0.1</version> |
| 8 | + <version>0.0.3</version> |
9 | 9 | <packaging>jar</packaging> |
10 | 10 |
|
11 | 11 | <name>FroxyGame</name> |
|
25 | 25 | </roles> |
26 | 26 | </developer> |
27 | 27 | </developers> |
| 28 | + <build> |
| 29 | + <defaultGoal>clean install</defaultGoal> |
| 30 | + <finalName>FroxyCore-${project.version}</finalName> |
| 31 | + <plugins> |
| 32 | + <plugin> |
| 33 | + <groupId>org.apache.maven.plugins</groupId> |
| 34 | + <artifactId>maven-compiler-plugin</artifactId> |
| 35 | + <version>3.8.0</version> |
| 36 | + <configuration> |
| 37 | + <source>1.8</source> |
| 38 | + <target>1.8</target> |
| 39 | + </configuration> |
| 40 | + </plugin> |
| 41 | + <plugin> |
| 42 | + <groupId>org.apache.maven.plugins</groupId> |
| 43 | + <artifactId>maven-shade-plugin</artifactId> |
| 44 | + <version>3.1.0</version> |
| 45 | + <executions> |
| 46 | + <execution> |
| 47 | + <id>shaded</id> |
| 48 | + <phase>package</phase> |
| 49 | + <goals> |
| 50 | + <goal>shade</goal> |
| 51 | + </goals> |
| 52 | + <configuration> |
| 53 | + <shadedArtifactAttached>false</shadedArtifactAttached> |
| 54 | + <createDependencyReducedPom>false</createDependencyReducedPom> |
| 55 | + <artifactSet> |
| 56 | + <excludes> |
| 57 | + <exclude>org.projectlombok:lombok</exclude> |
| 58 | + </excludes> |
| 59 | + </artifactSet> |
| 60 | + <filters> |
| 61 | + <filter> |
| 62 | + <artifact>*:*</artifact> |
| 63 | + <excludes> |
| 64 | + <exclude>META-INF/*.SF</exclude> |
| 65 | + <exclude>META-INF/*.DSA</exclude> |
| 66 | + <exclude>META-INF/*.RSA</exclude> |
| 67 | + </excludes> |
| 68 | + </filter> |
| 69 | + </filters> |
| 70 | + </configuration> |
| 71 | + </execution> |
| 72 | + </executions> |
| 73 | + </plugin> |
| 74 | + </plugins> |
| 75 | + </build> |
28 | 76 |
|
29 | 77 | <!-- Configuration of repositories --> |
30 | 78 | <repositories> |
|
35 | 83 | </repositories> |
36 | 84 |
|
37 | 85 | <dependencies> |
38 | | - <!-- Logging --> |
39 | | - <dependency> |
40 | | - <groupId>org.slf4j</groupId> |
41 | | - <artifactId>slf4j-api</artifactId> |
42 | | - <version>1.7.26</version> |
43 | | - <scope>compile</scope> |
44 | | - </dependency> |
45 | | - <dependency> |
46 | | - <groupId>org.slf4j</groupId> |
47 | | - <artifactId>slf4j-log4j12</artifactId> |
48 | | - <version>1.7.6</version> |
49 | | - <scope>compile</scope> |
50 | | - </dependency> |
51 | | - |
52 | | - <!-- Lombok --> |
53 | | - <dependency> |
54 | | - <groupId>org.projectlombok</groupId> |
55 | | - <artifactId>lombok</artifactId> |
56 | | - <version>1.18.6</version> |
57 | | - <scope>provided</scope> |
58 | | - </dependency> |
59 | | - |
60 | 86 | <!-- Network --> |
61 | 87 | <dependency> |
62 | 88 | <groupId>com.github.froxynetwork</groupId> |
63 | 89 | <artifactId>froxynetwork</artifactId> |
64 | | - <version>0.1.2</version> |
| 90 | + <version>0.1.3</version> |
65 | 91 | </dependency> |
66 | 92 | </dependencies> |
67 | 93 | </project> |
0 commit comments