-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpom.xml
129 lines (116 loc) · 3.86 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
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- name and version of the module -->
<groupId>NameOfModule</groupId>
<artifactId>NameOfModule</artifactId>
<version>0.0.1-SNAPSHOT</version>
<properties>
<!-- set Vassal version here -->
<vassal.version>3.7.5</vassal.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.vassalengine</groupId>
<artifactId>vassal-app</artifactId>
<version>${vassal.version}</version>
</dependency>
<!-- Add module dependencies which are not part of Vassal here -->
<dependency>
<groupId>org.jdom</groupId>
<artifactId>jdom2</artifactId>
<version>2.0.5</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>vassal-releases</id>
<url>https://vassalengine.org/maven</url>
</repository>
</repositories>
<build>
<sourceDirectory>src</sourceDirectory>
<!-- bundle files in dist/ into the module -->
<resources>
<!-- replace variables (e.g., ${project.version} in these files -->
<resource>
<directory>dist</directory>
<filtering>true</filtering>
<includes>
<include>buildFile.xml</include>
<include>moduledata</include>
</includes>
</resource>
<!-- don't replace variables in these files -->
<resource>
<directory>dist</directory>
<filtering>false</filtering>
<excludes>
<exclude>buildFile.xml</exclude>
<exclude>moduledata</exclude>
</excludes>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<showDeprecation>true</showDeprecation>
<!-- Vassal requires compiling for Java 11 compatibility -->
<release>11</release>
</configuration>
</plugin>
<!--
Uncomment the maven-shade-plugin to copy Java dependencies listed
above in a <dependency> section into the module. Dependencies must
be listed again in the <includes> section here to be packaged into
the module. DO NOT enable the maven-shade-plugin without at least
one dependency listed in <includes>.
-->
<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.5.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>org.jdom:jdom2</include>
</includes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>
-->
<!-- copy the .jar file maven packages to .vmod -->
<plugin>
<groupId>com.coderplus.maven.plugins</groupId>
<artifactId>copy-rename-maven-plugin</artifactId>
<version>1.0</version>
<executions>
<execution>
<id>rename-file</id>
<phase>package</phase>
<goals>
<goal>rename</goal>
</goals>
<configuration>
<sourceFile>${project.build.directory}/${project.build.finalName}.jar</sourceFile>
<destinationFile>${project.build.directory}/${project.build.finalName}.vmod</destinationFile>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>