Commit c105c71e authored by mingjun97's avatar mingjun97 Committed by Melledy
Browse files

Fix building error

parent 41de6bd2
...@@ -229,7 +229,6 @@ javadoc { ...@@ -229,7 +229,6 @@ javadoc {
} }
task injectGitHash { task injectGitHash {
doLast {
def gitCommitHash = { def gitCommitHash = {
try { try {
return 'git rev-parse --verify --short HEAD'.execute().text.trim() return 'git rev-parse --verify --short HEAD'.execute().text.trim()
...@@ -244,10 +243,8 @@ task injectGitHash { ...@@ -244,10 +243,8 @@ task injectGitHash {
public static final String GIT_HASH = \"${gitCommitHash()}\"; public static final String GIT_HASH = \"${gitCommitHash()}\";
} }
""" """
}
} }
processResources { processResources {
dependsOn "generateProto" dependsOn "generateProto"
dependsOn "injectGitHash"
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment