[java-idp-integration-tests] branch master updated: Fix timestamp issue, and bump parent POM version.
Scott Cantor
cantor.2 at osu.edu
Fri Mar 1 15:13:36 EST 2019
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch master
in repository java-idp-integration-tests.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-integration-tests.git;a=commit;h=9ff2629b24e6fe8bd8d2e68ba6aa2b1d14353451
The following commit(s) were added to refs/heads/master by this push:
new 9ff2629 Fix timestamp issue, and bump parent POM version.
9ff2629 is described below
commit 9ff2629b24e6fe8bd8d2e68ba6aa2b1d14353451
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Fri Mar 1 15:13:33 2019 -0500
Fix timestamp issue, and bump parent POM version.
---
.classpath | 2 +-
.settings/org.eclipse.jdt.core.prefs | 6 +++---
pom.xml | 2 +-
src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java | 4 ++--
4 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/.classpath b/.classpath
index 271ce0c..ff4983c 100644
--- a/.classpath
+++ b/.classpath
@@ -24,7 +24,7 @@
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
diff --git a/.settings/org.eclipse.jdt.core.prefs b/.settings/org.eclipse.jdt.core.prefs
index b501dcb..8f0e858 100644
--- a/.settings/org.eclipse.jdt.core.prefs
+++ b/.settings/org.eclipse.jdt.core.prefs
@@ -11,9 +11,9 @@ org.eclipse.jdt.core.codeComplete.staticFieldSuffixes=
org.eclipse.jdt.core.codeComplete.staticFinalFieldPrefixes=
org.eclipse.jdt.core.codeComplete.staticFinalFieldSuffixes=
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
-org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=11
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
-org.eclipse.jdt.core.compiler.compliance=1.8
+org.eclipse.jdt.core.compiler.compliance=11
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
@@ -74,7 +74,7 @@ org.eclipse.jdt.core.compiler.problem.unusedParameterWhenOverridingConcrete=disa
org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
org.eclipse.jdt.core.compiler.release=disabled
-org.eclipse.jdt.core.compiler.source=1.8
+org.eclipse.jdt.core.compiler.source=11
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation=16
diff --git a/pom.xml b/pom.xml
index 734be1a..e493db0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,7 +7,7 @@
<parent>
<groupId>net.shibboleth</groupId>
<artifactId>parent</artifactId>
- <version>8.0.0-SNAPSHOT</version>
+ <version>11.0.0-SNAPSHOT</version>
</parent>
<name>idp-integration-tests</name>
diff --git a/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java b/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java
index 2e0f98d..3ef58aa 100644
--- a/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java
+++ b/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java
@@ -28,7 +28,7 @@ import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.StandardCopyOption;
-import java.time.Instant;
+import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.ArrayList;
import java.util.Iterator;
@@ -350,7 +350,7 @@ public abstract class BaseIntegrationTest
Assert.assertTrue(pathToDistIdPHome.toAbsolutePath().toFile().exists(), "Path to dist idp.home not found");
// Path to per-test idp.home
- final String timestamp = DateTimeFormatter.ofPattern(idpHomePattern).format(Instant.now());
+ final String timestamp = DateTimeFormatter.ofPattern(idpHomePattern).format(LocalDateTime.now());
pathToIdPHome = pathToDistIdPHome.getParent().resolve(timestamp);
log.info("Path to idp.home '{}'", pathToIdPHome.toAbsolutePath());
Assert.assertFalse(pathToIdPHome.toAbsolutePath().toFile().exists(), "Path to idp.home already exists");
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list