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 2016/12/14 19:24:19 UTC

[29/50] [abbrv] incubator-edgent git commit: Merge pull request #229

Merge pull request #229

This closes #229

(cherry picked from commit 2c5c23213ba25386961317c6080138903738e067)


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

Branch: refs/heads/master
Commit: 238aac503d53e207c0f1d7c0692eb32cf159746f
Parents: bff397f
Author: Dale LaBossiere <dl...@us.ibm.com>
Authored: Tue Nov 15 11:41:07 2016 -0500
Committer: Dale LaBossiere <dl...@us.ibm.com>
Committed: Tue Nov 15 11:44:58 2016 -0500

----------------------------------------------------------------------
 build.gradle | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-edgent/blob/238aac50/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index bf26704..a34a27e 100644
--- a/build.gradle
+++ b/build.gradle
@@ -215,8 +215,10 @@ subprojects {
   if (aggregatorOnlyProjects.contains(project.path)) {
     return
   }
-
-  apply plugin: 'maven-publish'
+  
+  if(!project.group.equals("edgent.platform")){
+  	apply plugin: 'maven-publish'
+  }
   apply plugin: 'java'
   apply plugin: "jacoco"
  
@@ -626,6 +628,7 @@ subprojects {
 
   // support for 'gradle publishToMavenLocal' etc 
   // TODO publishing test.{fvt,svt} and samples ... doesn't seem desirable? e.g., we're excluding test.{fvt,svt} jars from the tgz
+  if(!project.group.equals("edgent.platform")){
   publishing {
     publications {
       mavenJava(MavenPublication) {
@@ -641,6 +644,7 @@ subprojects {
         }
       }
     }
+  }
   }  
 }