Repository: olingo-odata4 Updated Branches: refs/heads/master 61500e685 -> f5757cb4e
[OLINGO-564] Removed samples and test modules from deploy Project: http://git-wip-us.apache.org/repos/asf/olingo-odata4/repo Commit: http://git-wip-us.apache.org/repos/asf/olingo-odata4/commit/f5757cb4 Tree: http://git-wip-us.apache.org/repos/asf/olingo-odata4/tree/f5757cb4 Diff: http://git-wip-us.apache.org/repos/asf/olingo-odata4/diff/f5757cb4 Branch: refs/heads/master Commit: f5757cb4e2e20b00d1745aa9ad43e22868676937 Parents: 61500e6 Author: Michael Bolz <[email protected]> Authored: Mon May 4 10:42:22 2015 +0200 Committer: Michael Bolz <[email protected]> Committed: Mon May 4 10:42:22 2015 +0200 ---------------------------------------------------------------------- fit/pom.xml | 8 +++++++- lib/server-tecsvc/pom.xml | 7 +++++++ lib/server-test/pom.xml | 7 +++++++ samples/client/pom.xml | 12 ++++++++++++ samples/server/pom.xml | 12 ++++++++++++ 5 files changed, 45 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/olingo-odata4/blob/f5757cb4/fit/pom.xml ---------------------------------------------------------------------- diff --git a/fit/pom.xml b/fit/pom.xml index cb0c166..4cb6f2b 100644 --- a/fit/pom.xml +++ b/fit/pom.xml @@ -156,7 +156,13 @@ </includes> </configuration> </plugin> - + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> http://git-wip-us.apache.org/repos/asf/olingo-odata4/blob/f5757cb4/lib/server-tecsvc/pom.xml ---------------------------------------------------------------------- diff --git a/lib/server-tecsvc/pom.xml b/lib/server-tecsvc/pom.xml index 817745f..d8fe906 100644 --- a/lib/server-tecsvc/pom.xml +++ b/lib/server-tecsvc/pom.xml @@ -67,6 +67,13 @@ </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <executions> <execution> http://git-wip-us.apache.org/repos/asf/olingo-odata4/blob/f5757cb4/lib/server-test/pom.xml ---------------------------------------------------------------------- diff --git a/lib/server-test/pom.xml b/lib/server-test/pom.xml index 490f511..e724582 100644 --- a/lib/server-test/pom.xml +++ b/lib/server-test/pom.xml @@ -74,6 +74,13 @@ <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.8</version> <executions> http://git-wip-us.apache.org/repos/asf/olingo-odata4/blob/f5757cb4/samples/client/pom.xml ---------------------------------------------------------------------- diff --git a/samples/client/pom.xml b/samples/client/pom.xml index eba21d0..117735a 100644 --- a/samples/client/pom.xml +++ b/samples/client/pom.xml @@ -35,6 +35,18 @@ <relativePath>..</relativePath> </parent> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </build> + <dependencies> <dependency> <groupId>org.apache.olingo</groupId> http://git-wip-us.apache.org/repos/asf/olingo-odata4/blob/f5757cb4/samples/server/pom.xml ---------------------------------------------------------------------- diff --git a/samples/server/pom.xml b/samples/server/pom.xml index 900142c..0b84298 100644 --- a/samples/server/pom.xml +++ b/samples/server/pom.xml @@ -34,6 +34,18 @@ <relativePath>..</relativePath> </parent> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </build> + <dependencies> <dependency> <groupId>javax.servlet</groupId>
