This is an automated email from the ASF dual-hosted git repository. mattjuntunen pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-geometry.git
The following commit(s) were added to refs/heads/master by this push: new 224ea78 exclude example modules from deployment 224ea78 is described below commit 224ea78db625e1a8e735073d8a504239c5adfcd4 Author: Matt Juntunen <mattjuntu...@apache.org> AuthorDate: Sun Aug 8 10:36:01 2021 -0400 exclude example modules from deployment --- commons-geometry-examples/examples-jmh/pom.xml | 3 +++ commons-geometry-examples/examples-tutorials/pom.xml | 5 ++++- commons-geometry-examples/pom.xml | 3 +++ 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/commons-geometry-examples/examples-jmh/pom.xml b/commons-geometry-examples/examples-jmh/pom.xml index 7527390..19778bf 100644 --- a/commons-geometry-examples/examples-jmh/pom.xml +++ b/commons-geometry-examples/examples-jmh/pom.xml @@ -31,6 +31,9 @@ Code in this module is not part of the public API.</description> <properties> + <!-- Example module artifacts are not deployed. --> + <maven.deploy.skip>true</maven.deploy.skip> + <!-- OSGi --> <commons.osgi.symbolicName>org.apache.commons.geometry.examples.jmh</commons.osgi.symbolicName> <commons.osgi.export>org.apache.commons.geometry.examples.jmh.*</commons.osgi.export> diff --git a/commons-geometry-examples/examples-tutorials/pom.xml b/commons-geometry-examples/examples-tutorials/pom.xml index 136db66..2772034 100644 --- a/commons-geometry-examples/examples-tutorials/pom.xml +++ b/commons-geometry-examples/examples-tutorials/pom.xml @@ -33,6 +33,9 @@ <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> + <!-- Example module artifacts are not deployed. --> + <maven.deploy.skip>true</maven.deploy.skip> + <!-- OSGi --> <commons.osgi.symbolicName>org.apache.commons.geometry.examples.tutorials</commons.osgi.symbolicName> <commons.osgi.export>org.apache.commons.geometry.examples.tutorials.*</commons.osgi.export> @@ -58,7 +61,7 @@ <groupId>org.apache.commons</groupId> <artifactId>commons-geometry-io-core</artifactId> </dependency> - + <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-geometry-io-euclidean</artifactId> diff --git a/commons-geometry-examples/pom.xml b/commons-geometry-examples/pom.xml index d32d87c..7ebe6d8 100644 --- a/commons-geometry-examples/pom.xml +++ b/commons-geometry-examples/pom.xml @@ -38,6 +38,9 @@ <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> + <!-- Example module artifacts are not deployed. --> + <maven.deploy.skip>true</maven.deploy.skip> + <!-- Version of commons-geometry to test. --> <geometry.version>${project.version}</geometry.version>