| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?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>xyz.luxnk</groupId>
- <artifactId>mxmmod</artifactId>
- <version>1.0-SNAPSHOT</version>
- <dependencies>
- <dependency>
- <groupId>com.megacrit.cardcrawl</groupId>
- <artifactId>slaythespire</artifactId>
- <version>906</version>
- <scope>system</scope>
- <systemPath>${basedir}/../lib/desktop-1.0.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>basemod</groupId>
- <artifactId>basemod</artifactId>
- <version>3.2.2</version>
- <scope>system</scope>
- <systemPath>${basedir}/../lib/BaseMod.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>com.evacipated.cardcrawl</groupId>
- <artifactId>ModTheSpire</artifactId>
- <version>3.1.0</version>
- <scope>system</scope>
- <systemPath>${basedir}/../lib/ModTheSpire.jar</systemPath>
- </dependency>
- </dependencies>
- <build>
- <finalName>STS_Mod_Mxm</finalName>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.7.0</version>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-antrun-plugin</artifactId>
- <version>1.8</version>
- <executions>
- <execution>
- <phase>package</phase>
- <configuration>
- <target>
- <copy file="target/STS_Mod_Mxm.jar"
- tofile="../out/STS_Mod_Mxm.jar"/>
- <copy file="target/STS_Mod_Mxm.jar"
- tofile="E:/Steam/steamapps/common/SlayTheSpire/mods/STS_Mod_Mxm.jar"/>
- </target>
- </configuration>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-
- </project>
|