Repository: incubator-tamaya
Updated Branches:
  refs/heads/master e19ecb9dd -> 791b595ff


We don't want to deploy some artifacts as our build configuration related 
artifacts, the examples and the distribution.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/commit/791b595f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/tree/791b595f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/diff/791b595f

Branch: refs/heads/master
Commit: 791b595ff52020c2c7a46d29f0b434871fe9fc08
Parents: e19ecb9
Author: Oliver B. Fischer <[email protected]>
Authored: Sun May 21 21:55:32 2017 +0200
Committer: Oliver B. Fischer <[email protected]>
Committed: Sun May 21 21:55:32 2017 +0200

----------------------------------------------------------------------
 buildconfigurations/pom.xml                | 7 +++++++
 distribution/pom.xml                       | 6 ++++++
 examples/01-minimal/pom.xml                | 8 ++++++++
 examples/02-custom-property-source/pom.xml | 8 ++++++++
 examples/11-distributed/pom.xml            | 6 ++++++
 5 files changed, 35 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/791b595f/buildconfigurations/pom.xml
----------------------------------------------------------------------
diff --git a/buildconfigurations/pom.xml b/buildconfigurations/pom.xml
index cdb9a0c..da51621 100644
--- a/buildconfigurations/pom.xml
+++ b/buildconfigurations/pom.xml
@@ -33,6 +33,13 @@ under the License.
 
     <properties>
         <skipTests>true</skipTests>
+
+        <!--
+         ! We don't want to deploy our various build releated artefacts
+         ! to Maven Central.
+         ! Oliver B. Fischer, 2017-05-21
+         !-->
+        <maven.deploy.skip>true</maven.deploy.skip>
     </properties>
 
     <scm>

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/791b595f/distribution/pom.xml
----------------------------------------------------------------------
diff --git a/distribution/pom.xml b/distribution/pom.xml
index c222720..fde9f87 100644
--- a/distribution/pom.xml
+++ b/distribution/pom.xml
@@ -38,6 +38,12 @@ under the License.
          ! Oliver B. Fischer, 2017-05-09
          !-->
         <maven.source.skip>true</maven.source.skip>
+
+        <!--
+         ! Also the distribution should not appear in Maven Central.
+         ! Oliver B. Fischer, 2017-05-21
+         !-->
+        <maven.deploy.skip>true</maven.deploy.skip>
     </properties>
 
     <dependencies>

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/791b595f/examples/01-minimal/pom.xml
----------------------------------------------------------------------
diff --git a/examples/01-minimal/pom.xml b/examples/01-minimal/pom.xml
index e8dad25..ee8844d 100644
--- a/examples/01-minimal/pom.xml
+++ b/examples/01-minimal/pom.xml
@@ -34,6 +34,14 @@ under the License.
 
     <name>Apache Tamaya Minimal Example</name>
 
+    <properties>
+        <!--
+         ! We don't want to deploy this example to Maven Central.
+         ! Oliver B. Fischer, 2017-05-21
+         !-->
+        <maven.deploy.skip>true</maven.deploy.skip>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>org.apache.tamaya</groupId>

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/791b595f/examples/02-custom-property-source/pom.xml
----------------------------------------------------------------------
diff --git a/examples/02-custom-property-source/pom.xml 
b/examples/02-custom-property-source/pom.xml
index 31c624d..ce64331 100644
--- a/examples/02-custom-property-source/pom.xml
+++ b/examples/02-custom-property-source/pom.xml
@@ -31,6 +31,14 @@ under the License.
     <artifactId>02-custom-property-source</artifactId>
     <name>Apache Tamaya Custom Propertysource Example</name>
 
+    <properties>
+        <!--
+         ! We don't want to deploy this example to Maven Central.
+         ! Oliver B. Fischer, 2017-05-21
+         !-->
+        <maven.deploy.skip>true</maven.deploy.skip>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>org.apache.tamaya</groupId>

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/791b595f/examples/11-distributed/pom.xml
----------------------------------------------------------------------
diff --git a/examples/11-distributed/pom.xml b/examples/11-distributed/pom.xml
index a9095c3..72e5ac1 100644
--- a/examples/11-distributed/pom.xml
+++ b/examples/11-distributed/pom.xml
@@ -38,6 +38,12 @@
         <maven.compile.deprecation>true</maven.compile.deprecation>
         <tamaya.version>0.3-incubating-SNAPSHOT</tamaya.version>
         <junit.version>4.12</junit.version>
+
+        <!--
+         ! We don't want to deploy this example to Maven Central.
+         ! Oliver B. Fischer, 2017-05-21
+         !-->
+        <maven.deploy.skip>true</maven.deploy.skip>
     </properties>
 
     <dependencies>

Reply via email to