Repository: qpid-proton-j Updated Branches: refs/heads/master 44e692e8b -> 6961ea089
PROTON-1385: stop deploying examples and python tests, add missing config for assembly Project: http://git-wip-us.apache.org/repos/asf/qpid-proton-j/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton-j/commit/9e4a37e0 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton-j/tree/9e4a37e0 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton-j/diff/9e4a37e0 Branch: refs/heads/master Commit: 9e4a37e093a26db9aabfd8e191cf941c9ef3d612 Parents: 44e692e Author: Robert Gemmell <[email protected]> Authored: Fri Jan 20 17:01:08 2017 +0000 Committer: Robert Gemmell <[email protected]> Committed: Fri Jan 20 17:01:08 2017 +0000 ---------------------------------------------------------------------- apache-qpid-proton-j/pom.xml | 1 + examples/engine/pom.xml | 12 ++++++++++++ examples/reactor/pom.xml | 12 ++++++++++++ tests/pom.xml | 13 ++++--------- 4 files changed, 29 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton-j/blob/9e4a37e0/apache-qpid-proton-j/pom.xml ---------------------------------------------------------------------- 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> http://git-wip-us.apache.org/repos/asf/qpid-proton-j/blob/9e4a37e0/examples/engine/pom.xml ---------------------------------------------------------------------- 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> http://git-wip-us.apache.org/repos/asf/qpid-proton-j/blob/9e4a37e0/examples/reactor/pom.xml ---------------------------------------------------------------------- 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> http://git-wip-us.apache.org/repos/asf/qpid-proton-j/blob/9e4a37e0/tests/pom.xml ---------------------------------------------------------------------- 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 @@ mvn test \ </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> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
