Skip to content

Commit 72c4846

Browse files
committed
Restructure BaseMod/TestMod
1 parent 8d693e1 commit 72c4846

File tree

280 files changed

+10175
-10129
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

280 files changed

+10175
-10129
lines changed

mod/pom.xml

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
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+
<parent>
6+
<artifactId>BaseMod-root</artifactId>
7+
<groupId>basemod</groupId>
8+
<version>5.3.2</version>
9+
</parent>
10+
<modelVersion>4.0.0</modelVersion>
11+
12+
<artifactId>BaseMod</artifactId>
13+
14+
<dependencies>
15+
<dependency>
16+
<groupId>com.megacrit.cardcrawl</groupId>
17+
<artifactId>slaythespire</artifactId>
18+
<version>${SlayTheSpire.version}</version>
19+
<scope>system</scope>
20+
<systemPath>${basedir}/../../lib/desktop-1.0.jar</systemPath>
21+
</dependency>
22+
<dependency>
23+
<groupId>com.evacipated.cardcrawl</groupId>
24+
<artifactId>ModTheSpire</artifactId>
25+
<version>${ModTheSpire.version}</version>
26+
<scope>system</scope>
27+
<systemPath>${basedir}/../../lib/ModTheSpire.jar</systemPath>
28+
</dependency>
29+
<dependency>
30+
<groupId>com.github.trixt0r</groupId>
31+
<artifactId>Spriter</artifactId>
32+
<version>1.1</version>
33+
</dependency>
34+
</dependencies>
35+
36+
<build>
37+
<finalName>${artifactId}</finalName>
38+
<resources>
39+
<resource>
40+
<directory>src/main/resources</directory>
41+
<filtering>true</filtering>
42+
</resource>
43+
</resources>
44+
<plugins>
45+
<plugin>
46+
<groupId>org.apache.maven.plugins</groupId>
47+
<artifactId>maven-shade-plugin</artifactId>
48+
<version>2.4.2</version>
49+
<executions>
50+
<execution>
51+
<phase>package</phase>
52+
<goals>
53+
<goal>shade</goal>
54+
</goals>
55+
</execution>
56+
</executions>
57+
</plugin>
58+
<plugin>
59+
<groupId>org.apache.maven.plugins</groupId>
60+
<artifactId>maven-antrun-plugin</artifactId>
61+
<version>1.8</version>
62+
<executions>
63+
<execution>
64+
<phase>package</phase>
65+
<configuration>
66+
<target>
67+
<copy file="target/${artifactId}.jar" tofile="../../_ModTheSpire/mods/${artifactId}.jar"/>
68+
</target>
69+
</configuration>
70+
<goals>
71+
<goal>run</goal>
72+
</goals>
73+
</execution>
74+
</executions>
75+
</plugin>
76+
</plugins>
77+
</build>
78+
79+
</project>

0 commit comments

Comments
 (0)