You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@edgent.apache.org by cd...@apache.org on 2018/03/04 12:27:07 UTC

incubator-edgent git commit: Updated the configuration of the deployment filter according to recent changes of the plugin itself. - Should now also not deploy any source-release artifacts

Repository: incubator-edgent
Updated Branches:
  refs/heads/develop 74288c948 -> dcd5da753


Updated the configuration of the deployment filter according to recent changes of the plugin itself.
- Should now also not deploy any source-release artifacts


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

Branch: refs/heads/develop
Commit: dcd5da753e458acd1aeff38748913b9e222345d4
Parents: 74288c9
Author: Christofer Dutz <ch...@c-ware.de>
Authored: Sun Mar 4 13:27:02 2018 +0100
Committer: Christofer Dutz <ch...@c-ware.de>
Committed: Sun Mar 4 13:27:02 2018 +0100

----------------------------------------------------------------------
 pom.xml | 21 +++++++++++++++++++--
 1 file changed, 19 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-edgent/blob/dcd5da75/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index bbe6867..6450e14 100644
--- a/pom.xml
+++ b/pom.xml
@@ -505,11 +505,28 @@
         <version>1.0.0-SNAPSHOT</version>
         <executions>
           <execution>
-            <id>filter-test-jars</id>
+            <id>filter-deploy-artifacts</id>
             <phase>install</phase>
             <goals>
-              <goal>filter-test-jars</goal>
+              <goal>filter-deploy-artifacts</goal>
             </goals>
+            <configuration>
+              <filterRules>
+                <!-- Filter out all test-jars -->
+                <filterRule>
+                  <type>test-jar</type>
+                </filterRule>
+                <!-- Filter out the signatures of all test-jars -->
+                <filterRule>
+                  <type>jar.asc</type>
+                  <classifier>tests</classifier>
+                </filterRule>
+                <!-- Filter out any source release archives -->
+                <filterRule>
+                  <classifier>source-release</classifier>
+                </filterRule>
+              </filterRules>
+            </configuration>
           </execution>
         </executions>
       </plugin>