forked from hammer-83/ps5-jar-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
172 lines (151 loc) · 6.8 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>org.ps5jb</groupId>
<artifactId>parent</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<description>Parent BOM for all the subprojects. Contains version definitions for all the plugins and common configuration.</description>
<properties>
<!-- PS5 uses JDK 11, compile for the same target -->
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<!-- Skip a bunch of default plugins that are not in use -->
<maven.site.skip>true</maven.site.skip>
<maven.site.deploy.skip>true</maven.site.deploy.skip>
<!-- All source files use UTF-8 encoding -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- This is where all the BD-J stack classes are going to be downloaded and referenced from -->
<bdjstack.dir>${project.basedir}/lib</bdjstack.dir>
<!-- Name of the Xlet class from "xlet" module that will be run by BD-J when the BD-R disk is played -->
<xlet.className>org.ps5jb.loader.LoaderXlet</xlet.className>
<!-- Do not use the same version as parent project for Xlet because it will be modified less frequently. We only want to burn new disc if Xlet changes -->
<xlet.version>2.1.0</xlet.version>
</properties>
<modules>
<module>bdj-tools</module>
<module>stubs</module>
<module>xlet</module>
<module>assembly</module>
<module>sdk</module>
<module>xploit</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.ps5jb</groupId>
<artifactId>bdj-api</artifactId>
<version>${project.version}</version>
<scope>system</scope>
<systemPath>${bdjstack.dir}/bdj.jar</systemPath>
</dependency>
<dependency>
<groupId>org.ps5jb</groupId>
<artifactId>javatv-api</artifactId>
<version>${project.version}</version>
<scope>system</scope>
<systemPath>${bdjstack.dir}/javatv.jar</systemPath>
</dependency>
<dependency>
<groupId>org.ps5jb</groupId>
<artifactId>gem-api</artifactId>
<version>${project.version}</version>
<scope>system</scope>
<systemPath>${bdjstack.dir}/gem.jar</systemPath>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.11.3</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.4.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.7.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.8.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
<configuration>
<propertiesEncoding>ISO-8859-1</propertiesEncoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.4.2</version>
<configuration>
<archive>
<!-- Do not include META-INF/maven directory in JARs -->
<addMavenDescriptor>false</addMavenDescriptor>
</archive>
<excludes>
<!-- Do not include Maven-specific module param descriptor in JARs -->
<exclude>META-INF/jpms.args</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.10.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.6.0</version>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.0</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.4.1</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.17.1</version>
<configuration>
<generateBackupPoms>false</generateBackupPoms>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>