Repository: incubator-samza Updated Branches: refs/heads/0.8.0 5862f1391 -> 147d18e01
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/147d18e0 Tree: http://git-wip-us.apache.org/repos/asf/incubator-samza/tree/147d18e0 Diff: http://git-wip-us.apache.org/repos/asf/incubator-samza/diff/147d18e0 Branch: refs/heads/0.8.0 Commit: 147d18e017e79f9f2dbdf51557fc04dd2911fb46 Parents: 5862f13 Author: Yan Fang <[email protected]> Authored: Fri Oct 24 14:42:34 2014 -0700 Committer: Yan Fang <[email protected]> Committed: Fri Oct 24 14:42:34 2014 -0700 ---------------------------------------------------------------------- build.gradle | 6 ++++++ 1 file changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-samza/blob/147d18e0/build.gradle ---------------------------------------------------------------------- diff --git a/build.gradle b/build.gradle index 99f4354..64c223a 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"
