Skip to content

Instantly share code, notes, and snippets.

@alexdriedger
Created June 9, 2018 19:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexdriedger/fb74397086ee80073417f19d6305bb05 to your computer and use it in GitHub Desktop.
Save alexdriedger/fb74397086ee80073417f19d6305bb05 to your computer and use it in GitHub Desktop.
Slay The Spire Example Mod pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0">
<modelVersion>4.0.0</modelVersion>
<groupId>examplemod</groupId>
<artifactId>examplemod</artifactId>
<version>v1.0.0</version>
<packaging>jar</packaging>
<name>ExampleMod</name>
<description>Attempting to make a mod!</description>
<dependencies>
<dependency>
<groupId>com.megacrit.cardcrawl</groupId>
<artifactId>slaythespire</artifactId>
<version>016</version>
<scope>system</scope>
<systemPath>${basedir}/../lib/desktop-1.0.jar</systemPath>
</dependency>
<dependency>
<groupId>basemod</groupId>
<artifactId>basemod</artifactId>
<version>2.10.0</version>
<scope>system</scope>
<systemPath>${basedir}/../lib/BaseMod.jar</systemPath>
</dependency>
<dependency>
<groupId>com.evacipated.cardcrawl</groupId>
<artifactId>ModTheSpire</artifactId>
<version>2.6.0</version>
<scope>system</scope>
<systemPath>${basedir}/../lib/ModTheSpire.jar</systemPath>
</dependency>
</dependencies>
<build>
<finalName>ExampleMod</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/ExampleMod.jar" tofile="../lib/ExampleMod.jar"/>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
@sandi333
Copy link

sandi333 commented Aug 5, 2019

why my 50 and 51 get reported...

@byeol-lor
Copy link

Any updates on this one?

@Leaf-Player
Copy link

why my 50 and 51 get reported...

me,too

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment