Skip to content
This repository has been archived by the owner on Jul 1, 2022. It is now read-only.

Commit

Permalink
Add manifest entries to jaeger-thrift (#641)
Browse files Browse the repository at this point in the history
Signed-off-by: Gary Brown <[email protected]>
  • Loading branch information
objectiser authored Jul 30, 2019
1 parent 43bfc75 commit 0d4c675
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
gen-java/
jaeger-core/src/main/resources/io/jaegertracing/internal/jaeger.properties

### VSCode ###
.vscode/

### Eclipse ###

.metadata
Expand Down
8 changes: 7 additions & 1 deletion jaeger-thrift/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,13 @@ compileThrift {
}

tasks.withType(Javadoc) {
enabled = false
enabled = false
}

tasks.withType(Jar) {
manifest {
attributes('Implementation-Title': project.name, 'Implementation-Version': project.version, 'Specification-Version': project.version)
}
}

sourceSets {
Expand Down

0 comments on commit 0d4c675

Please sign in to comment.