-
Notifications
You must be signed in to change notification settings - Fork 3
/
pom.xml
120 lines (112 loc) · 5.1 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>dev.lone</groupId>
<artifactId>VanillaCustomizer</artifactId>
<version>1.0</version>
<name>VanillaCustomizer</name>
<packaging>pom</packaging>
<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>16</maven.compiler.source>
<maven.compiler.target>16</maven.compiler.target>
<jars_libs_folder>C:/Progetti/Minecraft/Spigot/_jars</jars_libs_folder>
</properties>
<modules>
<module>VanillaCustomizer-core</module>
<module>VanillaCustomizer-jar</module>
<module>VanillaCustomizer-nms-v1_21_1</module>
<module>VanillaCustomizer-nms-v1_20_6</module>
<module>VanillaCustomizer-nms-v1_20_R3</module>
<module>VanillaCustomizer-nms-v1_20_R2</module>
<module>VanillaCustomizer-nms-v1_20_R1</module>
<module>VanillaCustomizer-nms-v1_19_R3</module>
<module>VanillaCustomizer-nms-v1_18_R2</module>
<module>VanillaCustomizer-nms-v1_17_R1</module>
</modules>
<pluginRepositories>
<pluginRepository>
<id>bytecode.space</id>
<url>https://repo.bytecode.space/repository/maven-public/</url>
</pluginRepository>
</pluginRepositories>
<build>
<!-- <directory>R:\MavenBuildTarget\VanillaCustomizer\${project.artifactId}\target\</directory>-->
<directory>${project.basedir}/../.cache/targets/${project.artifactId}/target/</directory>
<extensions>
<extension>
<groupId>org.apache.maven.extensions</groupId>
<artifactId>maven-build-cache-extension</artifactId>
<version>1.0.1-SNAPSHOT-unofficial-1.0.0</version>
</extension>
<extension>
<groupId>co.leantechniques</groupId>
<artifactId>maven-buildtime-extension</artifactId>
<version>2.0.3</version>
</extension>
</extensions>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12.4</version>
<configuration>
<skipTests>true</skipTests>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<!-- Disable useless maven plugins -->
<!-- https://developer.jboss.org/people/ozizka/blog/2013/07/06/how-to-speed-up-maven-builds-disabling-unused-plugins -->
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>2.5</version>
<executions> <execution> <id>default-clean</id> <phase>none</phase> </execution> </executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M4</version>
<executions> <execution> <id>default-test</id> <phase>none</phase> </execution> </executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<useIncrementalCompilation>false</useIncrementalCompilation>
<source>1.8</source>
<target>1.8</target>
<release>16</release>
</configuration>
<executions>
<execution> <id>default-testCompile</id> <phase>none</phase> </execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution> <id>default-testResources</id> <phase>none</phase> </execution>
</executions>
</plugin>
<!-- <plugin>-->
<!-- <groupId>org.apache.maven.plugins</groupId>-->
<!-- <artifactId>maven-jar-plugin</artifactId>-->
<!-- <executions> <execution> <id>default-jar</id> <phase>none</phase> </execution> </executions>-->
<!-- </plugin>-->
</plugins>
</build>
</project>