PROTON-1385: stop deploying examples and python tests, add missing config for assembly
diff --git a/apache-qpid-proton-j/pom.xml b/apache-qpid-proton-j/pom.xml
index 24b6877..2d046a0 100644
--- a/apache-qpid-proton-j/pom.xml
+++ b/apache-qpid-proton-j/pom.xml
@@ -50,6 +50,7 @@
               <descriptors>
                 <descriptor>src/main/assembly/bin.xml</descriptor>
               </descriptors>
+              <tarLongFileMode>gnu</tarLongFileMode>
             </configuration>
           </execution>
         </executions>
diff --git a/examples/engine/pom.xml b/examples/engine/pom.xml
index 9e83fda..737696a 100644
--- a/examples/engine/pom.xml
+++ b/examples/engine/pom.xml
@@ -33,4 +33,16 @@
       <artifactId>proton-j</artifactId>
     </dependency>
   </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-deploy-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 </project>
diff --git a/examples/reactor/pom.xml b/examples/reactor/pom.xml
index 5d09020..1a1fa50 100644
--- a/examples/reactor/pom.xml
+++ b/examples/reactor/pom.xml
@@ -33,4 +33,16 @@
       <artifactId>proton-j</artifactId>
     </dependency>
   </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-deploy-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 </project>
diff --git a/tests/pom.xml b/tests/pom.xml
index ed09038..29cdf96 100644
--- a/tests/pom.xml
+++ b/tests/pom.xml
@@ -72,15 +72,10 @@
       </plugin>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-jar-plugin</artifactId>
-        <version>2.6</version>
-        <executions>
-          <execution>
-            <goals>
-              <goal>test-jar</goal>
-            </goals>
-          </execution>
-        </executions>
+        <artifactId>maven-deploy-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
       </plugin>
     </plugins>
   </build>