mirror of
https://github.com/nsacyber/HIRS.git
synced 2024-12-18 20:47:58 +00:00
39 lines
1.0 KiB
Groovy
39 lines
1.0 KiB
Groovy
import java.util.concurrent.TimeUnit
|
|
import org.gradle.api.tasks.Copy
|
|
|
|
plugins {
|
|
// Apply the application plugin to add support for building a CLI application in Java.
|
|
id 'application'
|
|
}
|
|
|
|
// Global checkstyle file
|
|
ext.checkstyleConfigFile = new File(rootDir, "/config/checkstyle/sun_checks.xml")
|
|
|
|
dependencies {
|
|
repositories {
|
|
// Use Maven Central for resolving dependencies.
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
def projectVersion = rootProject.file('VERSION').text.trim()
|
|
|
|
def buildTime = { ->
|
|
Date latestdate = new Date();
|
|
def time = latestdate.getTime();
|
|
long seconds = TimeUnit.MILLISECONDS.toSeconds(time);
|
|
return seconds;
|
|
}
|
|
|
|
def gitHash = { ->
|
|
def gitProcess = 'git rev-parse --short HEAD'.execute();
|
|
gitProcess.waitFor();
|
|
def shortHash = gitProcess.text.trim();
|
|
def gitHash = shortHash.substring(0, shortHash.length() - 2);
|
|
return gitHash;
|
|
}
|
|
|
|
project.ext["jarVersion"] = "${projectVersion}.${buildTime}.${gitHash}"
|
|
project.ext["packageVersion"] = "${projectVersion}.${buildTime}.${gitHash}.el8"
|
|
|