Repository: incubator-samza Updated Branches: refs/heads/master 3b107492f -> d7bd2df7a
SAMZA-420: Set implementation version in samza packages Project: http://git-wip-us.apache.org/repos/asf/incubator-samza/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-samza/commit/d7bd2df7 Tree: http://git-wip-us.apache.org/repos/asf/incubator-samza/tree/d7bd2df7 Diff: http://git-wip-us.apache.org/repos/asf/incubator-samza/diff/d7bd2df7 Branch: refs/heads/master Commit: d7bd2df7a8f642daf21ba14ccfd7f9cc006d2801 Parents: 3b10749 Author: Yan Fang <[email protected]> Authored: Fri Oct 24 14:14:40 2014 -0700 Committer: Yan Fang <[email protected]> Committed: Fri Oct 24 14:14:40 2014 -0700 ---------------------------------------------------------------------- build.gradle | 6 ++++++ 1 file changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-samza/blob/d7bd2df7/build.gradle ---------------------------------------------------------------------- diff --git a/build.gradle b/build.gradle index af9a5b0..828bce9 100644 --- a/build.gradle +++ b/build.gradle @@ -121,6 +121,12 @@ project(':samza-api') { project(":samza-core_$scalaVersion") { apply plugin: 'scala' + jar { + manifest { + attributes("Implementation-Version": "$version") + } + } + dependencies { compile project(':samza-api') compile "org.scala-lang:scala-library:$scalaLibVersion"
