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

Commit

Permalink
Fix version retrieval from jaeger.properties
Browse files Browse the repository at this point in the history
Signed-off-by: Juraci Paixão Kröhling <juraci@kroehling.de>
  • Loading branch information
jpkrohling committed Jul 5, 2018
1 parent b5a287b commit 527b1ce
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
gen-java/
jaeger-core/src/main/resources/io/jaegertracing/jaeger.properties
jaeger-core/src/main/resources/io/jaegertracing/internal/jaeger.properties

### Eclipse ###

Expand Down
2 changes: 1 addition & 1 deletion jaeger-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ configurations {

task jaegerVersion {
doLast {
def dirPath = 'src/main/resources/io/jaegertracing/'
def dirPath = 'src/main/resources/io/jaegertracing/internal/'
new File(projectDir, dirPath).mkdirs()
def propFile = new File(projectDir, "${dirPath}jaeger.properties").getAbsolutePath()
new File(propFile).write("jaeger.version=${project.version}")
Expand Down

This file was deleted.

0 comments on commit 527b1ce

Please sign in to comment.