-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
executable file
·151 lines (140 loc) · 7.28 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<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>
<properties>
<modID>psychologist</modID>
<author>CrossTangent</author>
<!-- Change this to match your Steam installation. -->
<Steam.path>/Users/sebastian/Library/Application Support/Steam/steamapps</Steam.path>
<!-- These don't have to be up to date, it's just nice if they are. -->
<SlayTheSpire.version>10-04-2022</SlayTheSpire.version>
<ModTheSpire.version>3.30.0</ModTheSpire.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<!-- This information will be displayed in ModTheSpire, the modded launcher. -->
<name>The Psychologist</name>
<version>0.0.21</version>
<!-- Avoid using \ in this description, as they can cause the description to fail to load. -->
<!-- If you really want to use them, you'll need to "escape" them by putting another one in front, like \\ -->
<description>A mod for Slay the Spire that adds the Psychologist.</description>
<!--You shouldn't need to change anything below this point, but feel free to look at it.-->
<!--You'll get a warning regarding these when you package your mod, but don't worry, it's just set up like this for convenience.-->
<!--Technically these should be changed individually, but this allows you to just set it in one place.-->
<!--Absolutely a no-go for larger projects, but for a personal mod it's fine.-->
<groupId>${modID}</groupId>
<artifactId>${modID}</artifactId>
<dependencies>
<dependency>
<groupId>com.megacrit.cardcrawl</groupId>
<artifactId>slaythespire</artifactId>
<version>${SlayTheSpire.version}</version>
<scope>system</scope>
<systemPath>${Steam.path}/common/SlayTheSpire/SlayTheSpire.app/Contents/Resources/desktop-1.0.jar</systemPath>
<!-- TODO: This used to be <systemPath>${Steam.path}/common/SlayTheSpire/desktop-1.0.jar</systemPath> and might need to be changed back. -->
</dependency>
<dependency>
<groupId>com.evacipated.cardcrawl</groupId>
<artifactId>modthespire</artifactId>
<version>${ModTheSpire.version}</version>
<scope>system</scope>
<systemPath>${Steam.path}/workshop/content/646570/1605060445/ModTheSpire.jar</systemPath>
</dependency>
<dependency>
<groupId>basemod</groupId>
<artifactId>basemod</artifactId>
<!--Don't worry about these version numbers, they're only used for display
in the left sidebar under External Libraries and don't need to be accurate.-->
<version>5.44.0</version>
<scope>system</scope>
<systemPath>${Steam.path}/workshop/content/646570/1605833019/BaseMod.jar</systemPath>
</dependency>
<dependency>
<groupId>com.evacipated.cardcrawl.mod</groupId>
<artifactId>StSLib</artifactId>
<version>2.4.0</version>
<scope>system</scope>
<systemPath>${Steam.path}/workshop/content/646570/1609158507/StSLib.jar</systemPath>
</dependency>
</dependencies>
<!-- This is how your code is packaged into the jar file-->
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<excludes>
<exclude>**/*.psd</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<id>description</id>
<phase>prepare-package</phase>
<configuration>
<target>
<property name="tempDescription" value="${project.description}"/>
<loadresource property="filteredDescription">
<propertyresource name="tempDescription"/>
<filterchain>
<tokenfilter>
<filetokenizer/>
<replaceregex pattern="(\s*\n\s*)" replace="\\\\n" flags="g"/>
<replaceregex pattern='((\\\\)*)(\\?")' replace='\1\\\\"' flags="g"/>
</tokenfilter>
</filterchain>
</loadresource>
<!--suppress UnresolvedMavenProperty -->
<replace file="target/classes/ModTheSpire.json" value="${filteredDescription}">
<replacetoken>!(project.description)</replacetoken>
</replace>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
<execution>
<id>copy</id>
<phase>package</phase>
<configuration>
<target>
<!--This puts a copy of your mod's jar file into the SlayTheSpire mods folder so it will be loaded.-->
<copy file="target/${project.artifactId}.jar" tofile="${Steam.path}/common/SlayTheSpire/SlayTheSpire.app/Contents/Resources/mods/${project.artifactId}.jar"/>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>false</filtering>
<excludes> <!-- These files will not be filtered. -->
<exclude>ModTheSpire.json</exclude>
<exclude>**/*.json</exclude>
</excludes>
</resource>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<includes> <!-- These files will be filtered. -->
<include>**/*.json</include>
</includes>
</resource>
<!-- Filtering replaces certain text like ${modID} with the corresponding value from this file. -->
</resources>
</build>
</project>