[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#36605] [PATCH 1/3] guix: ant-build-system: put dummy project-name i
From: |
Hartmut Goebel |
Subject: |
[bug#36605] [PATCH 1/3] guix: ant-build-system: put dummy project-name into default build.xml. |
Date: |
Thu, 11 Jul 2019 22:26:19 +0200 |
Without this, ant reported error messages like
Target "tests" does not exist in the project "null".
Simple using the jar-name is a good compromise.
* guix/build/ant-build-system.scm (default-build.xml): Add attribute
to sxml expression.
---
guix/build/ant-build-system.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/guix/build/ant-build-system.scm b/guix/build/ant-build-system.scm
index 00a4a46..fe7bae5 100644
--- a/guix/build/ant-build-system.scm
+++ b/guix/build/ant-build-system.scm
@@ -40,7 +40,8 @@
(call-with-output-file "build.xml"
(lambda (port)
(sxml->xml
- `(project (@ (basedir "."))
+ `(project (@ (basedir ".")
+ (name ,jar-name))
(property (@ (name "classes.dir")
(value "${basedir}/build/classes")))
(property (@ (name "jar.dir")
--
2.7.4
- [bug#36605] [PATCH v4] daemon: Set ownership of kept build directories to the calling user., Hartmut Goebel, 2019/07/11
- [bug#36605] [PATCH] gc: Add option --keep-going., Hartmut Goebel, 2019/07/11
- [bug#36605] [PATCH] gnu: Add anonip., Hartmut Goebel, 2019/07/11
- [bug#36605] [PATCH] gnu: Add python-gunicorn and python2-gunicorn., Hartmut Goebel, 2019/07/11
- [bug#36605] [PATCH 0/2] Updated patches for gunicorn, Hartmut Goebel, 2019/07/11
- [bug#36605] [PATCH] gnu: Add dtrx., Hartmut Goebel, 2019/07/11
- [bug#36605] [PATCH] gnu: Add php-hello-world., Hartmut Goebel, 2019/07/11
- [bug#36605] [PATCH 1/3] guix: ant-build-system: put dummy project-name into default build.xml.,
Hartmut Goebel <=
- [bug#36605] [PATCH 2/3] guix: ant-build-system: add empty `tests` target to default build.xml., Hartmut Goebel, 2019/07/11
- [bug#36605] [PATCH 1/2] gnu: Add gunicorn and gunicorn-python2., Hartmut Goebel, 2019/07/11
- [bug#36605] [PATCH 2/2] gnu: Build documentation for gunicorn and gunicorn-python2., Hartmut Goebel, 2019/07/11
- [bug#36605] [PATCH 0/3] Emhancements to the ant-build-system, Hartmut Goebel, 2019/07/11
- [bug#36605] [PATCH 02/12] guix: ant-build-system: use abs path as basedir, Hartmut Goebel, 2019/07/11
- [bug#36605] [PATCH 3/3] gnu: Remove now useless #:tests? #f from java-packages., Hartmut Goebel, 2019/07/11
- [bug#36605] [PATCH 08/12] gnu: Add java-commons-daemon., Hartmut Goebel, 2019/07/11
- [bug#36605] [PATCH 06/12] gnu: Add java-commons-cli., Hartmut Goebel, 2019/07/11
- [bug#36605] [PATCH 03/12] guix: Add java-utils., Hartmut Goebel, 2019/07/11
- [bug#36605] [PATCH 04/12] gnu: Add java-plexus-utils., Hartmut Goebel, 2019/07/11