From dfa28e14638f0653a066edc3cfc72f0a99aedcad Mon Sep 17 00:00:00 2001 From: Arnstein Ressem Date: Thu, 18 Oct 2018 09:47:20 +0200 Subject: A few more updates to 7-SNAPSHOT. --- bundle-plugin-test/src/test/java/com/yahoo/BundleIT.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bundle-plugin-test') diff --git a/bundle-plugin-test/src/test/java/com/yahoo/BundleIT.java b/bundle-plugin-test/src/test/java/com/yahoo/BundleIT.java index 38ca08ecff1..10f8f4e976c 100644 --- a/bundle-plugin-test/src/test/java/com/yahoo/BundleIT.java +++ b/bundle-plugin-test/src/test/java/com/yahoo/BundleIT.java @@ -109,15 +109,15 @@ public class BundleIT { assertThat(bundleClassPath, containsString(".,")); // If bundle-plugin-test is compiled in a mvn command that also built jrt, // the jrt artifact is jrt.jar, otherwise the installed and versioned artifact - // is used: jrt-6-SNAPSHOT.jar. + // is used: jrt-7-SNAPSHOT.jar. assertThat(bundleClassPath, anyOf( - containsString("dependencies/jrt-6-SNAPSHOT.jar"), + containsString("dependencies/jrt-7-SNAPSHOT.jar"), containsString("dependencies/jrt.jar"))); } @Test public void require_that_component_jar_file_contains_compile_artifacts() { - ZipEntry versionedEntry = jarFile.getEntry("dependencies/jrt-6-SNAPSHOT.jar"); + ZipEntry versionedEntry = jarFile.getEntry("dependencies/jrt-7-SNAPSHOT.jar"); ZipEntry unversionedEntry = jarFile.getEntry("dependencies/jrt.jar"); if (versionedEntry == null) { assertNotNull(unversionedEntry); -- cgit v1.2.3