diff options
author | Jakob Heher <jakob.heher@iaik.tugraz.at> | 2022-04-04 15:44:18 +0200 |
---|---|---|
committer | Jakob Heher <jakob.heher@iaik.tugraz.at> | 2022-04-04 15:44:18 +0200 |
commit | 2e9a704ce82a9f8f0df2e490f16dae96c4551abd (patch) | |
tree | 4407b1800f96452003be5e71464090e37250cdbe /pdf-over-gui | |
parent | cccd9d05648567458a9a0a4aae5610e21e821a5e (diff) | |
download | pdf-over-2e9a704ce82a9f8f0df2e490f16dae96c4551abd.tar.gz pdf-over-2e9a704ce82a9f8f0df2e490f16dae96c4551abd.tar.bz2 pdf-over-2e9a704ce82a9f8f0df2e490f16dae96c4551abd.zip |
clean up mac profiles + add mac JRE
Diffstat (limited to 'pdf-over-gui')
-rw-r--r-- | pdf-over-gui/pom.xml | 50 |
1 files changed, 10 insertions, 40 deletions
diff --git a/pdf-over-gui/pom.xml b/pdf-over-gui/pom.xml index af13f84d..dda9803e 100644 --- a/pdf-over-gui/pom.xml +++ b/pdf-over-gui/pom.xml @@ -513,45 +513,6 @@ <id>mac</id> <activation> <os> - <name>mac os x</name> - <arch>x86</arch> - </os> - </activation> - <properties> - <swt.artifactId>org.eclipse.swt.cocoa.macosx.x86_64</swt.artifactId> - <target.name>mac</target.name> - </properties> - </profile> - <profile> - <id>mac-2</id> - <activation> - <os> - <name>mac os x</name> - <arch>i386</arch> - </os> - </activation> - <properties> - <swt.artifactId>org.eclipse.swt.cocoa.macosx.x86_64</swt.artifactId> - <target.name>mac</target.name> - </properties> - </profile> - <profile> - <id>mac-64</id> - <activation> - <os> - <name>mac os x</name> - <arch>amd64</arch> - </os> - </activation> - <properties> - <swt.artifactId>org.eclipse.swt.cocoa.macosx.x86_64</swt.artifactId> - <target.name>mac</target.name> - </properties> - </profile> - <profile> - <id>mac-64-2</id> - <activation> - <os> <family>mac</family> <arch>x86_64</arch> </os> @@ -562,10 +523,13 @@ </activation> <properties> <swt.artifactId>org.eclipse.swt.cocoa.macosx.x86_64</swt.artifactId> + <bundled-jre.archiveName>OpenJDK11U-jre_x64_mac_hotspot_11.0.14.1_1.tar.gz</bundled-jre.archiveName> + <bundled-jre.nameInArchive>jdk-11.0.14.1+1-jre</bundled-jre.nameInArchive> <target.name>mac</target.name> </properties> </profile> <profile> + <!-- this profile is not yet specified in publish.sh; there is no openjdk11 for aarch64, and SWT needs adding to internal mvn --> <id>mac-aarch64</id> <activation> <os> @@ -579,6 +543,8 @@ </activation> <properties> <swt.artifactId>org.eclipse.swt.cocoa.macosx.aarch64</swt.artifactId> + <bundled-jre.archiveName>OpenJDK17U-jre_aarch64_mac_hotspot_17.0.2_8.tar.gz</bundled-jre.archiveName> + <bundled-jre.nameInArchive>jdk-17.0.2+8-jre</bundled-jre.nameInArchive> <target.name>mac</target.name> </properties> </profile> @@ -634,7 +600,11 @@ </profile> <profile> <id>ks-sign</id> - <!-- Activate this profile to sign the package using a java keystore --> + <activation> + <property> + <name>ks-file</name> + </property> + </activation> <build> <plugins> <plugin> |