-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
221 lines (215 loc) · 9.62 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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<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>
<groupId>IsosurfaceFX</groupId>
<artifactId>IsosurfaceFX</artifactId>
<version>${revision}</version>
<packaging>jar</packaging>
<name>${project.artifactId}-${project.version}</name>
<description>JavaFX Isosurface Utility</description>
<inceptionYear>2024</inceptionYear>
<properties>
<!-- https://maven.apache.org/maven-ci-friendly.html -->
<revision>${maven.build.timestamp}</revision>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>22.0.1</java.version>
<javafx.version>21.0.3</javafx.version>
<maven.min.version>3.6.3</maven.min.version>
<maven.compiler.release>22</maven.compiler.release>
<maven.build.timestamp.format>yyyy.MM.dd</maven.build.timestamp.format>
<maven.compiler.plugin.version>3.11.0</maven.compiler.plugin.version>
<maven.enforcer.plugin.version>3.3.0</maven.enforcer.plugin.version>
<maven.assembly.plugin.version>3.6.0</maven.assembly.plugin.version>
<maven.surefire.plugin.version>3.1.2</maven.surefire.plugin.version>
<javafx.maven.plugin.version>0.0.8</javafx.maven.plugin.version>
<codehaus.license.plugin.version>2.2.0</codehaus.license.plugin.version>
<codehaus.flatten.plugin.version>1.5.0</codehaus.flatten.plugin.version>
<codehaus.build.helper.maven.plugin.version>3.4.0</codehaus.build.helper.maven.plugin.version>
<git.commit.maven.plugin.version>6.0.0</git.commit.maven.plugin.version>
<junit.jupiter.version>5.10.0</junit.jupiter.version>
<fxyz3d.version>0.5.4</fxyz3d.version>
<quickhull3d.version>1.0.0</quickhull3d.version>
<license.licenceFile>LICENSE.md</license.licenceFile>
<license.licenseName>apache_v2</license.licenseName>
<mainClassName>IsosurfaceFXMain</mainClassName>
</properties>
<dependencies>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-graphics</artifactId>
<version>${javafx.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.fxyz3d</groupId>
<artifactId>fxyz3d</artifactId>
<version>${fxyz3d.version}</version>
</dependency>
<dependency>
<groupId>com.github.quickhull3d</groupId>
<artifactId>quickhull3d</artifactId>
<version>${quickhull3d.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>${maven.enforcer.plugin.version}</version>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>[${maven.min.version},)</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surefire.plugin.version}</version>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.jupiter.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>${javafx.maven.plugin.version}</version>
<configuration>
<mainClass>${mainClassName}</mainClass>
<includePathExceptionsInClasspath>true</includePathExceptionsInClasspath>
</configuration>
<executions>
<execution>
<id>default-cli</id>
<configuration>
<mainClass>${mainClassName}</mainClass>
<includePathExceptionsInClasspath>true</includePathExceptionsInClasspath>
</configuration>
</execution>
<execution>
<id>debug</id>
<configuration>
<debug>true</debug>
<debuglevel>lines,vars,source</debuglevel>
<options>
<option>-agentlib:jdwp=transport=dt_socket,server=n,address=${jpda.address}</option>
</options>
<mainClass>${mainClassName}</mainClass>
<includePathExceptionsInClasspath>true</includePathExceptionsInClasspath>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>io.github.git-commit-id</groupId>
<artifactId>git-commit-id-maven-plugin</artifactId>
<version>${git.commit.maven.plugin.version}</version>
<executions>
<execution>
<id>get-the-git-infos</id>
<goals>
<goal>revision</goal>
</goals>
<phase>validate</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>${codehaus.build.helper.maven.plugin.version}</version>
<executions>
<execution>
<id>timestamp-property</id>
<goals>
<goal>timestamp-property</goal>
</goals>
<configuration>
<name>build.timestamp.full</name>
<pattern>yyyy-MM-dd'T'HH:mm:ss'Z'</pattern>
<locale>en_US</locale>
<timeZone>UTC</timeZone>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>${codehaus.flatten.plugin.version}</version>
<configuration>
<flattenMode>bom</flattenMode>
<!-- Updates POM bundled for install/packaging -->
<updatePomFile>true</updatePomFile>
<outputDirectory>${project.build.directory}</outputDirectory>
<keepCommentsInPom>false</keepCommentsInPom>
</configuration>
<executions>
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>**/build.properties</include>
<include>**/logback.xml</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
<filtering>false</filtering>
<excludes>
<exclude>**/build.properties</exclude>
</excludes>
</resource>
</resources>
</build>
</project>