Skip to content

Commit

Permalink
Security save. Added new Cards and Actions. Not in a playable state s…
Browse files Browse the repository at this point in the history
…ince there are nor card images yet.
  • Loading branch information
shiki committed Mar 11, 2018
1 parent e545b8d commit fc43109
Showing 1 changed file with 68 additions and 0 deletions.
68 changes: 68 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
<project xmlns="http://maven.apache.org/POM/4.0.0">
<modelVersion>4.0.0</modelVersion>

<groupId>necromod</groupId>
<artifactId>necromod</artifactId>
<version>0.1.0</version>

<name>NecroMod</name>
<description>Necromancer class.</description>

<dependencies>
<dependency>
<groupId>com.megacrit.cardcrawl</groupId>
<artifactId>slaythespire</artifactId>
<version>014</version>
<scope>system</scope>
<systemPath>${basedir}/../_lib/desktop-1.0.jar</systemPath>
</dependency>
<dependency>
<groupId>basemod</groupId>
<artifactId>basemod</artifactId>
<version>1.5.2</version>
<scope>system</scope>
<systemPath>${basedir}/../_lib/BaseMod.jar</systemPath>
</dependency>
<dependency>
<groupId>modthespire</groupId>
<artifactId>modthespire</artifactId>
<version>1.5.2</version>
<scope>system</scope>
<systemPath>${basedir}/../_lib/ModTheSpire.jar</systemPath>
</dependency>
</dependencies>

<build>
<finalName>NecroMod</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/NecroMod.jar" tofile="../_ModTheSpire/mods/NecroMod.jar" />
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit fc43109

Please sign in to comment.