pom.xml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. <groupId>xyz.luxnk</groupId>
  7. <artifactId>mxmmod</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <dependencies>
  10. <dependency>
  11. <groupId>com.megacrit.cardcrawl</groupId>
  12. <artifactId>slaythespire</artifactId>
  13. <version>906</version>
  14. <scope>system</scope>
  15. <systemPath>${basedir}/../lib/desktop-1.0.jar</systemPath>
  16. </dependency>
  17. <dependency>
  18. <groupId>basemod</groupId>
  19. <artifactId>basemod</artifactId>
  20. <version>3.2.2</version>
  21. <scope>system</scope>
  22. <systemPath>${basedir}/../lib/BaseMod.jar</systemPath>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.evacipated.cardcrawl</groupId>
  26. <artifactId>ModTheSpire</artifactId>
  27. <version>3.1.0</version>
  28. <scope>system</scope>
  29. <systemPath>${basedir}/../lib/ModTheSpire.jar</systemPath>
  30. </dependency>
  31. </dependencies>
  32. <build>
  33. <finalName>STS_Mod_Mxm</finalName>
  34. <plugins>
  35. <plugin>
  36. <groupId>org.apache.maven.plugins</groupId>
  37. <artifactId>maven-compiler-plugin</artifactId>
  38. <version>3.7.0</version>
  39. <configuration>
  40. <source>1.8</source>
  41. <target>1.8</target>
  42. </configuration>
  43. </plugin>
  44. <plugin>
  45. <groupId>org.apache.maven.plugins</groupId>
  46. <artifactId>maven-antrun-plugin</artifactId>
  47. <version>1.8</version>
  48. <executions>
  49. <execution>
  50. <phase>package</phase>
  51. <configuration>
  52. <target>
  53. <copy file="target/STS_Mod_Mxm.jar"
  54. tofile="../out/STS_Mod_Mxm.jar"/>
  55. <copy file="target/STS_Mod_Mxm.jar"
  56. tofile="E:/Steam/steamapps/common/SlayTheSpire/mods/STS_Mod_Mxm.jar"/>
  57. </target>
  58. </configuration>
  59. <goals>
  60. <goal>run</goal>
  61. </goals>
  62. </execution>
  63. </executions>
  64. </plugin>
  65. </plugins>
  66. </build>
  67. </project>