You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@edgent.apache.org by jm...@apache.org on 2016/10/23 00:09:03 UTC

incubator-edgent git commit: Don't include class files and target directory in source release

Repository: incubator-edgent
Updated Branches:
  refs/heads/release1.0.0 b5b7d0ab3 -> f2ca0abfd


Don't include class files and target directory in source release


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

Branch: refs/heads/release1.0.0
Commit: f2ca0abfd60e5467e71cefb3806cbea9b53dd68d
Parents: b5b7d0a
Author: Justin Mclean <jm...@apache.org>
Authored: Sun Oct 23 11:08:54 2016 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Sun Oct 23 11:08:54 2016 +1100

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


http://git-wip-us.apache.org/repos/asf/incubator-edgent/blob/f2ca0abf/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index 8ed09f5..a6ef819 100644
--- a/build.gradle
+++ b/build.gradle
@@ -752,6 +752,8 @@ task srcReleaseTarGz(type: Tar) {
   exclude '**/externalJars/'    // gradle generated artifacts for eclipse
   exclude '**/bin/'             // eclipse generated artifacts
   exclude '**/classes/'         // ant generated artifacts
+  exclude '**/*.class'          // exclude class files
+  exclude 'target/**'		// exclude target
   doLast {
     ant.checksum algorithm: 'md5', file: archivePath
     ant.checksum algorithm: 'sha-512', fileext: '.sha', file: archivePath