From 4d9db6b4885f52e2655fdc2d3312970403aca254 Mon Sep 17 00:00:00 2001 From: idhamari Date: Wed, 5 Apr 2023 09:44:48 +0200 Subject: [PATCH 1/2] fix maven bug 419 --- .gitignore | 2 ++ pom.xml | 4 ++-- readme.md | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 4c1548125..41b51fc7a 100644 --- a/.gitignore +++ b/.gitignore @@ -16,5 +16,7 @@ target .classpath .project /build +/target .DS_Store /.pmd +.vscode diff --git a/pom.xml b/pom.xml index 2d0c75501..61f8b5f88 100644 --- a/pom.xml +++ b/pom.xml @@ -317,7 +317,7 @@ com.github.ralfstuckert.pdfbox-layout pdfbox2-layout - 1.0.0 + 1.0.1 * @@ -328,7 +328,7 @@ org.apache.poi poi - 4.1.1 + 3.10-FINAL org.apache.poi diff --git a/readme.md b/readme.md index 3909731db..a2e8ae67c 100644 --- a/readme.md +++ b/readme.md @@ -35,7 +35,7 @@ Currently, the main development of ARX is carried out using Eclipse as an IDE an The Ant build script features various targets that can be used to build different versions of ARX (e.g. including GUI code or not). To build only the core code using Maven, set the system property `core` to `true`. This will build a platform independent jar with the ARX main code module and no GUI components: -```$ mvn compile -Dcore=true``` +```$ mvn install -Dcore=true -DskipTests``` Contributing and code of conduct ------ From ad1066c6844e3cdc9c091f11d8dff6b6f784b131 Mon Sep 17 00:00:00 2001 From: idhamari Date: Wed, 5 Apr 2023 12:55:23 +0200 Subject: [PATCH 2/2] replace install with compile --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index a2e8ae67c..c2e344df8 100644 --- a/readme.md +++ b/readme.md @@ -35,7 +35,7 @@ Currently, the main development of ARX is carried out using Eclipse as an IDE an The Ant build script features various targets that can be used to build different versions of ARX (e.g. including GUI code or not). To build only the core code using Maven, set the system property `core` to `true`. This will build a platform independent jar with the ARX main code module and no GUI components: -```$ mvn install -Dcore=true -DskipTests``` +```$ mvn compile -Dcore=true -DskipTests``` Contributing and code of conduct ------