Skip to content

Commit bad1492

Browse files
committed
26.1 part 1: copy over 1.21 module
1 parent 321d1ae commit bad1492

51 files changed

Lines changed: 9408 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

v26_1/pom.xml

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>com.denizenscript</groupId>
8+
<artifactId>denizen-v1_21</artifactId>
9+
<version>1.3.1-SNAPSHOT</version>
10+
11+
<dependencies>
12+
<dependency>
13+
<groupId>com.denizenscript</groupId>
14+
<artifactId>denizen</artifactId>
15+
<version>${project.version}</version>
16+
<scope>compile</scope>
17+
<optional>true</optional>
18+
</dependency>
19+
<dependency>
20+
<groupId>org.spigotmc</groupId>
21+
<artifactId>spigot-api</artifactId>
22+
<version>1.21.11-R0.2-SNAPSHOT</version>
23+
<scope>provided</scope>
24+
</dependency>
25+
<dependency>
26+
<groupId>org.spigotmc</groupId>
27+
<artifactId>spigot</artifactId>
28+
<version>1.21.11-R0.2-SNAPSHOT</version>
29+
<classifier>remapped-mojang</classifier>
30+
<scope>provided</scope>
31+
</dependency>
32+
</dependencies>
33+
34+
<build>
35+
<plugins>
36+
<plugin>
37+
<groupId>net.md-5</groupId>
38+
<artifactId>specialsource-maven-plugin</artifactId>
39+
<version>2.0.2</version>
40+
<executions>
41+
<execution>
42+
<phase>package</phase>
43+
<goals>
44+
<goal>remap</goal>
45+
</goals>
46+
<id>remap-obf</id>
47+
<configuration>
48+
<srgIn>org.spigotmc:minecraft-server:1.21.11-R0.2-SNAPSHOT:txt:maps-mojang</srgIn>
49+
<reverse>true</reverse>
50+
<remappedDependencies>org.spigotmc:spigot:1.21.11-R0.2-SNAPSHOT:jar:remapped-mojang</remappedDependencies>
51+
<remappedArtifactAttached>true</remappedArtifactAttached>
52+
<remappedClassifierName>remapped-obf</remappedClassifierName>
53+
</configuration>
54+
</execution>
55+
<execution>
56+
<phase>package</phase>
57+
<goals>
58+
<goal>remap</goal>
59+
</goals>
60+
<id>remap-spigot</id>
61+
<configuration>
62+
<inputFile>${project.build.directory}/${project.artifactId}-${project.version}-remapped-obf.jar</inputFile>
63+
<srgIn>org.spigotmc:minecraft-server:1.21.11-R0.2-SNAPSHOT:csrg:maps-spigot</srgIn>
64+
<remappedDependencies>org.spigotmc:spigot:1.21.11-R0.2-SNAPSHOT:jar:remapped-obf</remappedDependencies>
65+
</configuration>
66+
</execution>
67+
</executions>
68+
</plugin>
69+
<plugin>
70+
<groupId>org.apache.maven.plugins</groupId>
71+
<artifactId>maven-compiler-plugin</artifactId>
72+
<version>3.10.1</version>
73+
<configuration>
74+
<source>16</source>
75+
<target>16</target>
76+
</configuration>
77+
</plugin>
78+
</plugins>
79+
</build>
80+
81+
</project>

0 commit comments

Comments
 (0)