You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@edgent.apache.org by dl...@apache.org on 2017/12/11 21:27:16 UTC

incubator-edgent git commit: [Edgent-440] don't deploy edgent-test* projects to Nexus

Repository: incubator-edgent
Updated Branches:
  refs/heads/develop c2e026ce5 -> ff2ed0cbf


[Edgent-440] don't deploy edgent-test* projects to Nexus

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

Branch: refs/heads/develop
Commit: ff2ed0cbf230bade2483f84b3fc46b09e5f21ec0
Parents: c2e026c
Author: Dale LaBossiere <dl...@us.ibm.com>
Authored: Mon Dec 11 15:08:33 2017 -0500
Committer: Dale LaBossiere <dl...@us.ibm.com>
Committed: Mon Dec 11 15:08:33 2017 -0500

----------------------------------------------------------------------
 platforms/java7/test/appservice-applications/pom.xml |  8 ++++++++
 platforms/java7/test/fvtiot/pom.xml                  |  8 ++++++++
 platforms/java7/test/pom.xml                         | 13 +++++++++++++
 platforms/java7/test/svt/pom.xml                     |  8 ++++++++
 test/appservice-applications/pom.xml                 | 13 +++++++++++++
 test/fvtiot/pom.xml                                  |  8 ++++++++
 test/pom.xml                                         |  8 ++++++++
 test/svt/pom.xml                                     | 13 +++++++++++++
 8 files changed, 79 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-edgent/blob/ff2ed0cb/platforms/java7/test/appservice-applications/pom.xml
----------------------------------------------------------------------
diff --git a/platforms/java7/test/appservice-applications/pom.xml b/platforms/java7/test/appservice-applications/pom.xml
index b170828..d4d2fab 100644
--- a/platforms/java7/test/appservice-applications/pom.xml
+++ b/platforms/java7/test/appservice-applications/pom.xml
@@ -85,6 +85,14 @@
           </includes>
         </configuration>
       </plugin>
+      <!-- We don't want to deploy this project to Maven -->
+      <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/incubator-edgent/blob/ff2ed0cb/platforms/java7/test/fvtiot/pom.xml
----------------------------------------------------------------------
diff --git a/platforms/java7/test/fvtiot/pom.xml b/platforms/java7/test/fvtiot/pom.xml
index 45dae11..ee292d6 100644
--- a/platforms/java7/test/fvtiot/pom.xml
+++ b/platforms/java7/test/fvtiot/pom.xml
@@ -93,6 +93,14 @@
           </execution>
         </executions>
       </plugin>
+      <!-- We don't want to deploy this project to Maven -->
+      <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/incubator-edgent/blob/ff2ed0cb/platforms/java7/test/pom.xml
----------------------------------------------------------------------
diff --git a/platforms/java7/test/pom.xml b/platforms/java7/test/pom.xml
index 45f6e6c..8089778 100644
--- a/platforms/java7/test/pom.xml
+++ b/platforms/java7/test/pom.xml
@@ -36,5 +36,18 @@
     <module>fvtiot</module>
     <module>svt</module>
   </modules>
+  
+  <build>
+    <plugins>
+      <!-- We don't want to deploy this project to Maven -->
+      <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/incubator-edgent/blob/ff2ed0cb/platforms/java7/test/svt/pom.xml
----------------------------------------------------------------------
diff --git a/platforms/java7/test/svt/pom.xml b/platforms/java7/test/svt/pom.xml
index 2cd70b7..f812c55 100644
--- a/platforms/java7/test/svt/pom.xml
+++ b/platforms/java7/test/svt/pom.xml
@@ -79,6 +79,14 @@
           </execution>
         </executions>
       </plugin>
+      <!-- We don't want to deploy this project to Maven -->
+      <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/incubator-edgent/blob/ff2ed0cb/test/appservice-applications/pom.xml
----------------------------------------------------------------------
diff --git a/test/appservice-applications/pom.xml b/test/appservice-applications/pom.xml
index 493b7dc..f4c47d0 100644
--- a/test/appservice-applications/pom.xml
+++ b/test/appservice-applications/pom.xml
@@ -37,5 +37,18 @@
       <version>1.3.0-SNAPSHOT</version>
     </dependency>
   </dependencies>
+  
+  <build>
+    <plugins>
+      <!-- We don't want to deploy this project to Maven -->
+      <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/incubator-edgent/blob/ff2ed0cb/test/fvtiot/pom.xml
----------------------------------------------------------------------
diff --git a/test/fvtiot/pom.xml b/test/fvtiot/pom.xml
index 5fdd905..e8ba188 100644
--- a/test/fvtiot/pom.xml
+++ b/test/fvtiot/pom.xml
@@ -56,6 +56,14 @@
           </execution>
         </executions>
       </plugin>
+      <!-- We don't want to deploy this project to Maven -->
+      <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/incubator-edgent/blob/ff2ed0cb/test/pom.xml
----------------------------------------------------------------------
diff --git a/test/pom.xml b/test/pom.xml
index f2c6c0d..dbbd0b7 100644
--- a/test/pom.xml
+++ b/test/pom.xml
@@ -60,6 +60,14 @@
           </excludes>
         </configuration>
       </plugin>
+      <!-- We don't want to deploy this project to Maven -->
+      <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/incubator-edgent/blob/ff2ed0cb/test/svt/pom.xml
----------------------------------------------------------------------
diff --git a/test/svt/pom.xml b/test/svt/pom.xml
index f46fbee..06dd1a3 100644
--- a/test/svt/pom.xml
+++ b/test/svt/pom.xml
@@ -56,5 +56,18 @@
       <version>1.3.0-SNAPSHOT</version>
     </dependency>
   </dependencies>
+  
+  <build>
+    <plugins>
+      <!-- We don't want to deploy this project to Maven -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-deploy-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 
 </project>