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/11/15 16:41:20 UTC

[1/2] incubator-edgent git commit: fix publish by ignoring platform projects

Repository: incubator-edgent
Updated Branches:
  refs/heads/master a85c6c320 -> 2c5c23213


fix publish by ignoring platform projects


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

Branch: refs/heads/master
Commit: e02be19fdd6119c1b71a2b007ca140dc968fb0bd
Parents: 232f89c
Author: Yaoliang Chen <ya...@cn.ibm.com>
Authored: Mon Nov 7 08:39:21 2016 +0800
Committer: Yaoliang Chen <ya...@cn.ibm.com>
Committed: Mon Nov 7 08:44:34 2016 +0800

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


http://git-wip-us.apache.org/repos/asf/incubator-edgent/blob/e02be19f/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index 8ed09f5..c984170 100644
--- a/build.gradle
+++ b/build.gradle
@@ -210,8 +210,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"
  
@@ -621,6 +623,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) {
@@ -636,6 +639,7 @@ subprojects {
         }
       }
     }
+  }
   }  
 }
 


[2/2] incubator-edgent git commit: Merge pull request #229

Posted by dl...@apache.org.
Merge pull request #229

This closes #229


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

Branch: refs/heads/master
Commit: 2c5c23213ba25386961317c6080138903738e067
Parents: a85c6c3 e02be19
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:41:07 2016 -0500

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