[java-identity-provider] branch dev/JPAR-175 updated: Fix order of Maven home location
Rod Widdowson
rdw at steadingsoftware.com
Tue Jun 15 09:54:09 UTC 2021
This is an automated email from the git hooks/post-receive script.
rdw pushed a commit to branch dev/JPAR-175
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=a2610016bc0d957c5c31da765e8e7de7a4afd0d7
The following commit(s) were added to refs/heads/dev/JPAR-175 by this push:
new a2610016b Fix order of Maven home location
a2610016b is described below
commit a2610016bc0d957c5c31da765e8e7de7a4afd0d7
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Tue Jun 15 10:53:52 2021 +0100
Fix order of Maven home location
---
.../test/java/net/shibboleth/idp/dependencies/DependencyTest.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/idp-installer/src/test/java/net/shibboleth/idp/dependencies/DependencyTest.java b/idp-installer/src/test/java/net/shibboleth/idp/dependencies/DependencyTest.java
index 6c9f6fc5b..60dd0d87d 100644
--- a/idp-installer/src/test/java/net/shibboleth/idp/dependencies/DependencyTest.java
+++ b/idp-installer/src/test/java/net/shibboleth/idp/dependencies/DependencyTest.java
@@ -99,12 +99,12 @@ public class DependencyTest extends OpenSAMLInitBaseTestCase {
mavenAvailable = true;
return;
}
- String home = System.getenv("MAVEN_HOME");
+ String home = LOCAL_MAVEN_HOME;
if (home == null) {
- home = System.getenv("_");
+ home = System.getenv("MAVEN_HOME");
}
if (home == null) {
- home = LOCAL_MAVEN_HOME;
+ home = System.getenv("_");
}
if (home != null) {
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list