You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by me...@apache.org on 2020/05/07 09:22:12 UTC

[dubbo] branch master updated: Making "dubbo-build-tools" module to be non-deployable one. (#6115)

This is an automated email from the ASF dual-hosted git repository.

mercyblitz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo.git


The following commit(s) were added to refs/heads/master by this push:
     new 391dc65  Making "dubbo-build-tools" module to be non-deployable one. (#6115)
391dc65 is described below

commit 391dc65c61733201adce1837e2f48d9a75d5a0e7
Author: Mercy Ma <me...@gmail.com>
AuthorDate: Thu May 7 17:21:28 2020 +0800

    Making "dubbo-build-tools" module to be non-deployable one. (#6115)
---
 dubbo-build-tools/pom.xml | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/dubbo-build-tools/pom.xml b/dubbo-build-tools/pom.xml
index 761cb2a..e6f5929 100644
--- a/dubbo-build-tools/pom.xml
+++ b/dubbo-build-tools/pom.xml
@@ -22,4 +22,18 @@
     <artifactId>dubbo-build-tools</artifactId>
     <version>1.0.0</version>
     <packaging>jar</packaging>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-deploy-plugin</artifactId>
+                <version>2.8.2</version>
+                <configuration>
+                    <skip>true</skip>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
 </project>
\ No newline at end of file