|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + 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"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <artifactId>silkspawners-v1_19_R1</artifactId> |
| 5 | + <packaging>jar</packaging> |
| 6 | + <name>SilkSpawners for v1_19_R1</name> |
| 7 | + |
| 8 | + <parent> |
| 9 | + <groupId>de.dustplanet</groupId> |
| 10 | + <artifactId>silkspawners-parent</artifactId> |
| 11 | + <version>7.3.1-SNAPSHOT</version> |
| 12 | + <relativePath>../../</relativePath> |
| 13 | + </parent> |
| 14 | + |
| 15 | + <dependencies> |
| 16 | + <dependency> |
| 17 | + <groupId>org.spigotmc</groupId> |
| 18 | + <artifactId>spigot</artifactId> |
| 19 | + <version>1.19-R0.1-SNAPSHOT</version> |
| 20 | + <scope>provided</scope> |
| 21 | + <classifier>remapped-mojang</classifier> |
| 22 | + <exclusions> |
| 23 | + <exclusion> |
| 24 | + <groupId>org.spigotmc</groupId> |
| 25 | + <artifactId>minecraft-server</artifactId> |
| 26 | + </exclusion> |
| 27 | + </exclusions> |
| 28 | + </dependency> |
| 29 | + <dependency> |
| 30 | + <groupId>de.dustplanet</groupId> |
| 31 | + <artifactId>silkspawners-API</artifactId> |
| 32 | + <version>7.3.1-SNAPSHOT</version> |
| 33 | + </dependency> |
| 34 | + </dependencies> |
| 35 | + |
| 36 | + <build> |
| 37 | + <plugins> |
| 38 | + <plugin> |
| 39 | + <groupId>net.md-5</groupId> |
| 40 | + <artifactId>specialsource-maven-plugin</artifactId> |
| 41 | + <version>1.2.4</version> |
| 42 | + <executions> |
| 43 | + <execution> |
| 44 | + <phase>package</phase> |
| 45 | + <goals> |
| 46 | + <goal>remap</goal> |
| 47 | + </goals> |
| 48 | + <id>remap-mojang</id> |
| 49 | + <configuration> |
| 50 | + <srgIn>org.spigotmc:minecraft-server:1.19-R0.1-SNAPSHOT:txt:maps-mojang</srgIn> |
| 51 | + <reverse>true</reverse> |
| 52 | + <remappedDependencies>org.spigotmc:spigot:1.19-R0.1-SNAPSHOT:jar:remapped-mojang</remappedDependencies> |
| 53 | + <remappedArtifactAttached>true</remappedArtifactAttached> |
| 54 | + <remappedClassifierName>remapped-mojang</remappedClassifierName> |
| 55 | + </configuration> |
| 56 | + </execution> |
| 57 | + <execution> |
| 58 | + <phase>package</phase> |
| 59 | + <goals> |
| 60 | + <goal>remap</goal> |
| 61 | + </goals> |
| 62 | + <id>remap-spigot</id> |
| 63 | + <configuration> |
| 64 | + <inputFile>${project.build.directory}/${project.artifactId}-${project.version}-remapped-mojang.jar</inputFile> |
| 65 | + <srgIn>org.spigotmc:minecraft-server:1.19-R0.1-SNAPSHOT:csrg:maps-spigot</srgIn> |
| 66 | + <remappedDependencies>org.spigotmc:spigot:1.19-R0.1-SNAPSHOT:jar:remapped-mojang</remappedDependencies> |
| 67 | + </configuration> |
| 68 | + </execution> |
| 69 | + </executions> |
| 70 | + </plugin> |
| 71 | + </plugins> |
| 72 | + </build> |
| 73 | +</project> |
0 commit comments