IGNITE-5762: LGPL modules are no longer deployed into Maven repository.
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/1a2dde91 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/1a2dde91 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/1a2dde91 Branch: refs/heads/ignite-5578 Commit: 1a2dde91083a2d733e2ccc1c03bc9959caa921af Parents: 3c1749d Author: Oleg Ostanin <[email protected]> Authored: Mon Jul 17 15:10:36 2017 +0300 Committer: devozerov <[email protected]> Committed: Mon Jul 17 15:10:36 2017 +0300 ---------------------------------------------------------------------- examples/pom.xml | 7 +++++++ modules/geospatial/pom.xml | 24 ++++++++++++++++++++++++ modules/hibernate-4.2/pom.xml | 24 ++++++++++++++++++++++++ modules/hibernate-5.1/pom.xml | 24 ++++++++++++++++++++++++ modules/schedule/pom.xml | 24 ++++++++++++++++++++++++ 5 files changed, 103 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/1a2dde91/examples/pom.xml ---------------------------------------------------------------------- diff --git a/examples/pom.xml b/examples/pom.xml index 58da342..6042781 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -312,6 +312,13 @@ </execution> </executions> </plugin> + <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/ignite/blob/1a2dde91/modules/geospatial/pom.xml ---------------------------------------------------------------------- diff --git a/modules/geospatial/pom.xml b/modules/geospatial/pom.xml index c715ffa..488a4a4 100644 --- a/modules/geospatial/pom.xml +++ b/modules/geospatial/pom.xml @@ -83,6 +83,23 @@ </dependency> </dependencies> + <profiles> + <profile> + <id>lgpl</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>false</skip> + </configuration> + </plugin> + </plugins> + </build> + </profile> + </profiles> + <build> <plugins> <!-- Generate the OSGi MANIFEST.MF for this bundle. @@ -99,6 +116,13 @@ </instructions> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> </plugins> </build> http://git-wip-us.apache.org/repos/asf/ignite/blob/1a2dde91/modules/hibernate-4.2/pom.xml ---------------------------------------------------------------------- diff --git a/modules/hibernate-4.2/pom.xml b/modules/hibernate-4.2/pom.xml index adcf1b1..e40a550 100644 --- a/modules/hibernate-4.2/pom.xml +++ b/modules/hibernate-4.2/pom.xml @@ -132,6 +132,23 @@ </dependency> </dependencies> + <profiles> + <profile> + <id>lgpl</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>false</skip> + </configuration> + </plugin> + </plugins> + </build> + </profile> + </profiles> + <build> <testResources> <testResource> @@ -154,6 +171,13 @@ <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> </plugin> + <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/ignite/blob/1a2dde91/modules/hibernate-5.1/pom.xml ---------------------------------------------------------------------- diff --git a/modules/hibernate-5.1/pom.xml b/modules/hibernate-5.1/pom.xml index 8424806..a99408e 100644 --- a/modules/hibernate-5.1/pom.xml +++ b/modules/hibernate-5.1/pom.xml @@ -132,6 +132,23 @@ </dependency> </dependencies> + <profiles> + <profile> + <id>lgpl</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>false</skip> + </configuration> + </plugin> + </plugins> + </build> + </profile> + </profiles> + <build> <testResources> <testResource> @@ -154,6 +171,13 @@ <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> </plugin> + <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/ignite/blob/1a2dde91/modules/schedule/pom.xml ---------------------------------------------------------------------- diff --git a/modules/schedule/pom.xml b/modules/schedule/pom.xml index 22c2571..2686701 100644 --- a/modules/schedule/pom.xml +++ b/modules/schedule/pom.xml @@ -83,6 +83,23 @@ </dependency> </dependencies> + <profiles> + <profile> + <id>lgpl</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>false</skip> + </configuration> + </plugin> + </plugins> + </build> + </profile> + </profiles> + <build> <plugins> <!-- Generate the OSGi MANIFEST.MF for this fragment. It is a fragment because it contains internal processors @@ -96,6 +113,13 @@ </instructions> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> </plugins> </build> </project>
