|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
| 3 | + <parent> |
| 4 | + <artifactId>BabyModel</artifactId> |
| 5 | + <groupId>fr.babystaff</groupId> |
| 6 | + <version>1.0.0</version> |
| 7 | + </parent> |
3 | 8 | <modelVersion>4.0.0</modelVersion>
|
4 |
| - <groupId>fr.babystaff</groupId> |
5 |
| - <artifactId>BabyModel</artifactId> |
| 9 | + <artifactId>BabyModel-Spigot</artifactId> |
6 | 10 | <name>BabyModel-Spigot</name>
|
7 |
| - <version>1.0.0</version> |
8 | 11 | <build>
|
9 |
| - <resources> |
10 |
| - <resource> |
11 |
| - <directory>src/main/resources</directory> |
12 |
| - </resource> |
13 |
| - </resources> |
14 | 12 | <plugins>
|
15 |
| - <plugin> |
16 |
| - <artifactId>maven-compiler-plugin</artifactId> |
17 |
| - <version>3.8.1</version> |
18 |
| - <configuration> |
19 |
| - <source>${java.version}</source> |
20 |
| - <target>${java.version}</target> |
21 |
| - </configuration> |
22 |
| - </plugin> |
23 | 13 | <plugin>
|
24 | 14 | <artifactId>maven-shade-plugin</artifactId>
|
25 |
| - <version>3.2.4</version> |
| 15 | + <version>3.2.1</version> |
26 | 16 | <executions>
|
27 | 17 | <execution>
|
28 | 18 | <phase>package</phase>
|
|
32 | 22 | </execution>
|
33 | 23 | </executions>
|
34 | 24 | </plugin>
|
35 |
| - <plugin> |
36 |
| - <artifactId>maven-resources-plugin</artifactId> |
37 |
| - <version>3.3.1</version> |
38 |
| - <executions> |
39 |
| - <execution> |
40 |
| - <goals> |
41 |
| - <goal>resources</goal> |
42 |
| - </goals> |
43 |
| - <configuration> |
44 |
| - <nonFilteredFileExtensions> |
45 |
| - <nonFilteredFileExtension>jar</nonFilteredFileExtension> |
46 |
| - </nonFilteredFileExtensions> |
47 |
| - </configuration> |
48 |
| - </execution> |
49 |
| - </executions> |
50 |
| - </plugin> |
51 | 25 | </plugins>
|
52 | 26 | </build>
|
53 | 27 | <repositories>
|
|
76 | 50 | <artifactId>spigot-api</artifactId>
|
77 | 51 | <version>1.8.8-R0.1-SNAPSHOT</version>
|
78 | 52 | <scope>provided</scope>
|
| 53 | + <exclusions> |
| 54 | + <exclusion> |
| 55 | + <artifactId>commons-lang</artifactId> |
| 56 | + <groupId>commons-lang</groupId> |
| 57 | + </exclusion> |
| 58 | + <exclusion> |
| 59 | + <artifactId>json-simple</artifactId> |
| 60 | + <groupId>com.googlecode.json-simple</groupId> |
| 61 | + </exclusion> |
| 62 | + <exclusion> |
| 63 | + <artifactId>guava</artifactId> |
| 64 | + <groupId>com.google.guava</groupId> |
| 65 | + </exclusion> |
| 66 | + <exclusion> |
| 67 | + <artifactId>ebean</artifactId> |
| 68 | + <groupId>org.avaje</groupId> |
| 69 | + </exclusion> |
| 70 | + <exclusion> |
| 71 | + <artifactId>snakeyaml</artifactId> |
| 72 | + <groupId>org.yaml</groupId> |
| 73 | + </exclusion> |
| 74 | + <exclusion> |
| 75 | + <artifactId>bungeecord-chat</artifactId> |
| 76 | + <groupId>net.md-5</groupId> |
| 77 | + </exclusion> |
| 78 | + </exclusions> |
79 | 79 | </dependency>
|
80 | 80 | <dependency>
|
81 | 81 | <groupId>com.mojang</groupId>
|
82 | 82 | <artifactId>authlib</artifactId>
|
83 | 83 | <version>1.5.22</version>
|
84 | 84 | <scope>provided</scope>
|
| 85 | + <exclusions> |
| 86 | + <exclusion> |
| 87 | + <artifactId>commons-lang3</artifactId> |
| 88 | + <groupId>org.apache.commons</groupId> |
| 89 | + </exclusion> |
| 90 | + <exclusion> |
| 91 | + <artifactId>log4j-core</artifactId> |
| 92 | + <groupId>org.apache.logging.log4j</groupId> |
| 93 | + </exclusion> |
| 94 | + <exclusion> |
| 95 | + <artifactId>commons-codec</artifactId> |
| 96 | + <groupId>commons-codec</groupId> |
| 97 | + </exclusion> |
| 98 | + <exclusion> |
| 99 | + <artifactId>log4j-api</artifactId> |
| 100 | + <groupId>org.apache.logging.log4j</groupId> |
| 101 | + </exclusion> |
| 102 | + <exclusion> |
| 103 | + <artifactId>commons-io</artifactId> |
| 104 | + <groupId>commons-io</groupId> |
| 105 | + </exclusion> |
| 106 | + <exclusion> |
| 107 | + <artifactId>guava</artifactId> |
| 108 | + <groupId>com.google.guava</groupId> |
| 109 | + </exclusion> |
| 110 | + </exclusions> |
85 | 111 | </dependency>
|
86 | 112 | </dependencies>
|
87 |
| - <distributionManagement> |
88 |
| - <repository> |
89 |
| - <id>github</id> |
90 |
| - <name>BabyModel</name> |
91 |
| - <url>https://maven.pkg.github.com/Baby-Game/BabyModel</url> |
92 |
| - </repository> |
93 |
| - </distributionManagement> |
94 |
| - <properties> |
95 |
| - <java.version>1.8</java.version> |
96 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
97 |
| - </properties> |
98 | 113 | </project>
|
0 commit comments