From a3290d9cedddaa55d14cbe696b3c56298d877bcf Mon Sep 17 00:00:00 2001 From: Andreas Kuhtz Date: Tue, 30 Sep 2014 09:02:38 +0200 Subject: [PATCH 1/5] Added simulation repo as maven repo to allow download of dsol-xml dependency. --- pom.xml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pom.xml b/pom.xml index 4edc0d4b..8e217b6b 100644 --- a/pom.xml +++ b/pom.xml @@ -40,6 +40,14 @@ HEAD + + + dsol-xml + Simulation @ TU Delft + http://simulation.tudelft.nl/maven/ + + + net.sf.launch4j From 19650928a60bf6a741a422809a040e2819ffe803 Mon Sep 17 00:00:00 2001 From: Andreas Kuhtz Date: Wed, 1 Oct 2014 12:15:05 +0200 Subject: [PATCH 2/5] Removed simulation repo as maven repo. --- pom.xml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/pom.xml b/pom.xml index 8e217b6b..4edc0d4b 100644 --- a/pom.xml +++ b/pom.xml @@ -40,14 +40,6 @@ HEAD - - - dsol-xml - Simulation @ TU Delft - http://simulation.tudelft.nl/maven/ - - - net.sf.launch4j From 958242255d37ce52f483616ef4a56d326250ff5e Mon Sep 17 00:00:00 2001 From: Andreas Kuhtz Date: Tue, 30 Sep 2014 09:02:38 +0200 Subject: [PATCH 3/5] Added simulation repo as maven repo to allow download of dsol-xml dependency. --- pom.xml | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/pom.xml b/pom.xml index 6f133843..dba3c8e5 100644 --- a/pom.xml +++ b/pom.xml @@ -46,12 +46,20 @@ HEAD - - - net.sf.launch4j - launch4j + + + dsol-xml + Simulation @ TU Delft + http://simulation.tudelft.nl/maven/ + + + + + + net.sf.launch4j + launch4j ${launch4j.version} - core + core com.ibm.icu From 7ed75049ebb8d711a1212ea365239096ac6eff86 Mon Sep 17 00:00:00 2001 From: Andreas Kuhtz Date: Wed, 1 Oct 2014 12:15:05 +0200 Subject: [PATCH 4/5] Removed simulation repo as maven repo. --- pom.xml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/pom.xml b/pom.xml index dba3c8e5..9e924a14 100644 --- a/pom.xml +++ b/pom.xml @@ -46,14 +46,6 @@ HEAD - - - dsol-xml - Simulation @ TU Delft - http://simulation.tudelft.nl/maven/ - - - net.sf.launch4j From f551098ea797f374384b309c084d6cc2e3e97166 Mon Sep 17 00:00:00 2001 From: Andreas Kuhtz Date: Thu, 24 May 2018 22:21:56 +0200 Subject: [PATCH 5/5] Add support for build on raspi. This depends on changes in launch4j. --- pom.xml | 2 +- .../java/com/akathist/maven/plugins/launch4j/Launch4jMojo.java | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9e924a14..a684a884 100644 --- a/pom.xml +++ b/pom.xml @@ -28,7 +28,7 @@ http://9stmaryrd.com/tools/launch4j-maven-plugin/ - 3.11 + 3.13-SNAPSHOT 1.7 1.7 diff --git a/src/main/java/com/akathist/maven/plugins/launch4j/Launch4jMojo.java b/src/main/java/com/akathist/maven/plugins/launch4j/Launch4jMojo.java index 910440aa..347f16a1 100644 --- a/src/main/java/com/akathist/maven/plugins/launch4j/Launch4jMojo.java +++ b/src/main/java/com/akathist/maven/plugins/launch4j/Launch4jMojo.java @@ -598,6 +598,9 @@ private Artifact chooseBinaryBits() throws MojoExecutionException { if ("amd64".equals(arch)) { plat = "linux64"; } + else if ("arm".equals(arch)) { + plat = "linuxarmv6hf"; + } else { plat = "linux"; }