2021-03-04 13:21:22 +01:00
|
|
|
import org.codehaus.groovy.runtime.MethodClosure
|
|
|
|
|
2014-10-23 15:05:14 +02:00
|
|
|
/**
|
2014-10-24 01:14:48 +02:00
|
|
|
* Copyright 2014 Ryszard Wiśniewski <brut.alll@gmail.com>
|
2014-10-23 15:05:14 +02:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
2021-08-24 15:31:41 +02:00
|
|
|
* https://www.apache.org/licenses/LICENSE-2.0
|
2014-10-23 15:05:14 +02:00
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2017-07-03 13:16:53 +02:00
|
|
|
def getCheckedOutGitCommitHash() {
|
|
|
|
def gitFolder = "$projectDir/.git/"
|
|
|
|
def takeFromHash = 6
|
2014-10-23 15:05:14 +02:00
|
|
|
|
2017-07-03 13:16:53 +02:00
|
|
|
def head
|
|
|
|
try {
|
|
|
|
head = new File(gitFolder + "HEAD").text.split(":")
|
2021-03-04 13:21:22 +01:00
|
|
|
} catch(Exception ignored) {
|
|
|
|
return null
|
2017-07-03 13:16:53 +02:00
|
|
|
}
|
2014-10-23 15:05:14 +02:00
|
|
|
|
2017-07-03 13:16:53 +02:00
|
|
|
def isCommit = head.length == 1
|
|
|
|
if(isCommit) return head[0].trim().take(takeFromHash)
|
2014-10-23 15:05:14 +02:00
|
|
|
|
2017-07-03 13:16:53 +02:00
|
|
|
def refHead = new File(gitFolder + head[1].trim())
|
|
|
|
refHead.text.trim().take takeFromHash
|
|
|
|
}
|
2014-10-23 15:05:14 +02:00
|
|
|
|
2017-07-03 13:16:53 +02:00
|
|
|
def getCheckedOutBranch() {
|
|
|
|
def gitFolder = "$projectDir/.git/"
|
2014-10-23 15:05:14 +02:00
|
|
|
|
2017-07-03 13:16:53 +02:00
|
|
|
def head
|
|
|
|
try {
|
|
|
|
head = new File(gitFolder + "HEAD").text.split("/")
|
2021-03-04 13:21:22 +01:00
|
|
|
return head[2].trim()
|
|
|
|
} catch(Exception ignored) {
|
|
|
|
return "SNAPSHOT"
|
2014-10-23 15:05:14 +02:00
|
|
|
}
|
|
|
|
}
|
2017-07-03 13:16:53 +02:00
|
|
|
|
|
|
|
ext {
|
2021-03-04 13:21:22 +01:00
|
|
|
getCheckedOutGitCommitHash = this.&getCheckedOutGitCommitHash as MethodClosure
|
|
|
|
getCheckedOutBranch = this.&getCheckedOutBranch as MethodClosure
|
2021-08-24 15:31:41 +02:00
|
|
|
}
|