-
Notifications
You must be signed in to change notification settings - Fork 4
/
dependency-reduced-pom.xml
126 lines (126 loc) · 4.91 KB
/
dependency-reduced-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
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.simtechdata</groupId>
<artifactId>MacIcns</artifactId>
<version>1.3.4</version>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>${versions-maven-plugin}</version>
<executions>
<execution>
<goals>
<goal>display-dependency-updates</goal>
<goal>display-plugin-updates</goal>
<goal>property-updates-report</goal>
<goal>dependency-updates-report</goal>
<goal>plugin-updates-report</goal>
<goal>update-properties</goal>
<goal>use-latest-versions</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin}</version>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer>
<mainClass>your.main.Class</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin}</version>
<configuration>
<classpathDependencyExcludes>org.graalvm.nativeimage</classpathDependencyExcludes>
<argLine>-ea</argLine>
</configuration>
</plugin>
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>${javafx-maven-plugin}</version>
<configuration>
<mainClass>${mainClass}</mainClass>
<launcher>MacIcns</launcher>
</configuration>
</plugin>
<plugin>
<groupId>com.gluonhq</groupId>
<artifactId>gluonfx-maven-plugin</artifactId>
<version>${gluonfx-maven-plugin}</version>
<configuration>
<mainClass>${mainClass}</mainClass>
<linkerArgs>
<arg>${system-linker-arg}</arg>
</linkerArgs>
<nativeImageArgs>
<arg>--enable-url-protocols=https</arg>
<arg>--enable-url-protocols=http</arg>
<arg>--no-fallback</arg>
<arg>--verbose</arg>
<arg>--add-exports=org.graalvm.nativeimage.builder/com.oracle.svm.core.jdk=ALL-UNNAMED</arg>
<arg>${system-native-image-arg}</arg>
<arg>${compatibility-arg}</arg>
<arg>-H:ReflectionConfigurationFiles=${project.basedir}/config/reflect-config.json</arg>
</nativeImageArgs>
<appIdentifier>${mainClass}</appIdentifier>
<releaseConfiguration>
<vendor>Syphon</vendor>
<description>MacIcns is a program that will take a single 1024x1024 png file and create a
correctly formatted icns file</description>
<packageType>${package.type}</packageType>
<bundleShortVersion>${project.version}</bundleShortVersion>
<bundleVersion>${project.version}</bundleVersion>
<skipSigning>true</skipSigning>
</releaseConfiguration>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>build-for-macos-latest</id>
<properties>
<system-linker-arg>${pom.basedir}/config/missing_symbols-macos-latest.o</system-linker-arg>
<mac.app.store>true</mac.app.store>
<system-native-image-arg>-Dsvm.platform=org.graalvm.nativeimage.Platform$MACOS_AMD64</system-native-image-arg>
<package.type>pkg</package.type>
</properties>
</profile>
</profiles>
<properties>
<maven.compiler.release>20</maven.compiler.release>
<versions-maven-plugin>2.16.2</versions-maven-plugin>
<mainClass>com.simtechdata.MainGUI</mainClass>
<maven-surefire-plugin>3.2.2</maven-surefire-plugin>
<native-maven-plugin>0.9.28</native-maven-plugin>
<javapackager>1.7.2</javapackager>
<gluonfx-maven-plugin>1.0.21</gluonfx-maven-plugin>
<maven-assembly-plugin>3.3.0</maven-assembly-plugin>
<maven-jar-plugin>3.3.0</maven-jar-plugin>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<javafx.version>21-ea+24</javafx.version>
<javafx-maven-plugin>0.0.8</javafx-maven-plugin>
<maven-compiler-plugin>3.11.0</maven-compiler-plugin>
</properties>
</project>