Merge branch '1.9' into 2.0
diff --git a/pom.xml b/pom.xml
index c08d56c..bc9d69b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1353,6 +1353,10 @@
           <name>m2e.version</name>
         </property>
       </activation>
+      <properties>
+        <!-- enforces Java 8 compiler compliance, even when Eclipse uses JDK 9 or later -->
+        <maven.compiler.release>8</maven.compiler.release>
+      </properties>
       <build>
         <pluginManagement>
           <plugins>
diff --git a/test/src/main/java/org/apache/accumulo/test/ShellServerIT.java b/test/src/main/java/org/apache/accumulo/test/ShellServerIT.java
index bbaaba6..adae888 100644
--- a/test/src/main/java/org/apache/accumulo/test/ShellServerIT.java
+++ b/test/src/main/java/org/apache/accumulo/test/ShellServerIT.java
@@ -835,7 +835,7 @@
   public void classpath() throws Exception {
     // classpath
     ts.exec("classpath", true,
-        "Level 2: Java Classloader (loads everything" + " defined by java classpath)", true);
+        "Level 2: Java Classloader (loads everything defined by java classpath)", true);
   }
 
   @Test