Qballl

Untitled

Jan 3rd, 2025
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1.  
  2. <build>
  3. <plugins>
  4. <plugin>
  5. <groupId>net.md-5</groupId>
  6. <artifactId>specialsource-maven-plugin</artifactId>
  7. <version>2.0.3</version>
  8. <executions>
  9. <execution>
  10. <phase>package</phase>
  11. <goals>
  12. <goal>remap</goal>
  13. </goals>
  14. <id>remap-obf</id>
  15. <configuration>
  16. <srgIn>org.spigotmc:minecraft-server1.21.4-R0.1-SNAPSHOT:txt:maps-mojang</srgIn>
  17. <reverse>true</reverse>
  18. <remappedDependencies>org.spigotmc:spigot:1.21.4-R0.1-SNAPSHOT:jar:remapped-mojang</remappedDependencies>
  19. <remappedArtifactAttached>true</remappedArtifactAttached>
  20. <remappedClassifierName>remapped-obf</remappedClassifierName>
  21. </configuration>
  22. </execution>
  23. <execution>
  24. <phase>package</phase>
  25. <goals>
  26. <goal>remap</goal>
  27. </goals>
  28. <id>remap-spigot</id>
  29. <configuration>
  30. <inputFile>${project.build.directory}/${project.artifactId}-${project.version}-remapped-obf.jar</inputFile>
  31. <srgIn>org.spigotmc:minecraft-server:1.21.4-R0.1-SNAPSHOT:csrg:maps-spigot</srgIn>
  32. <remappedDependencies>org.spigotmc:spigot:1.21.4-R0.1-SNAPSHOT:jar:remapped-obf</remappedDependencies>
  33. </configuration>
  34. </execution>
  35. </executions>
  36. </plugin>
  37. </plugins>
  38. </build>
  39.  
  40. <dependencies>
  41. <dependency>
  42. <groupId>org.spigotmc</groupId>
  43. <artifactId>spigot</artifactId>
  44. <version>1.21.4-R0.1-SNAPSHOT</version>
  45. <classifier>remapped-mojang</classifier>
  46. <scope>provided</scope>
  47. </dependency>
  48. </dependencies>
  49.  
Advertisement
Add Comment
Please, Sign In to add comment