JSIEVE-111 Upgrade maven-assembly-plugin 3.0.0 -> 3.1.1

- Use goals `single` instead of `attached` by the recommendation at http://maven.apache.org/plugins-archives/maven-assembly-plugin-2.5.5/attached-mojo.html
diff --git a/all/pom.xml b/all/pom.xml
index 3f78c62..3701723 100644
--- a/all/pom.xml
+++ b/all/pom.xml
@@ -54,6 +54,7 @@
         <plugins>
             <plugin>
                 <artifactId>maven-assembly-plugin</artifactId>
+                <version>3.1.1</version>
                 <configuration>
                     <descriptorSourceDirectory>${project.basedir}/src/assemble/</descriptorSourceDirectory>
                     <tarLongFileMode>gnu</tarLongFileMode>
@@ -63,7 +64,7 @@
                         <id>make-assembly</id>
                         <phase>package</phase>
                         <goals>
-                            <goal>attached</goal>
+                            <goal>single</goal>
                         </goals>
                     </execution>
                 </executions>