mirror of
https://github.com/nsacyber/HIRS.git
synced 2024-12-18 20:47:58 +00:00
146 lines
3.6 KiB
Groovy
146 lines
3.6 KiB
Groovy
import java.util.concurrent.TimeUnit
|
|
plugins {
|
|
id "java"
|
|
id "com.netflix.nebula.ospackage" version "11.4.0"
|
|
id 'checkstyle'
|
|
}
|
|
// Get version from main project gradle
|
|
def packVersion = properties.get("packageVersion");
|
|
def jarVersion = properties.get("jarVersion");
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(17)
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
flatDir { dirs "lib" }
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':HIRS_Utils')
|
|
implementation libs.jcommander
|
|
implementation libs.commons.io
|
|
}
|
|
|
|
ext.configDir = new File(projectDir, 'config')
|
|
|
|
checkstyle {
|
|
toolVersion = '10.12.7'
|
|
configFile file("${rootDir}/config/checkstyle/checkstyle.xml")
|
|
}
|
|
// https://github.com/checkstyle/checkstyle/issues/14211#issuecomment-1884129948
|
|
configurations.checkstyle {
|
|
resolutionStrategy.capabilitiesResolution.withCapability("com.google.collections:google-collections") {
|
|
select("com.google.guava:guava:0")
|
|
}
|
|
}
|
|
checkstyleMain {
|
|
source ='src/main/java'
|
|
}
|
|
tasks.withType(Checkstyle) {
|
|
reports {
|
|
xml.required = false
|
|
html.required = true
|
|
}
|
|
}
|
|
|
|
jar {
|
|
// Keep jar clean:
|
|
exclude 'META-INF/*.SF', 'META-INF/*.DSA', 'META-INF/*.RSA', 'META-INF/*.MF'
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
|
manifest {
|
|
attributes(
|
|
"Main-Class": "hirs.tcg_eventlog.Main",
|
|
'Class-Path':configurations.runtimeClasspath.files.collect { it.getName() }.join(' ')
|
|
)
|
|
}
|
|
from {
|
|
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
|
|
}
|
|
//jar name format: [archiveBaseName]-[archiveAppendix]-[archiveVersion]-[archiveClassifier].[archiveExtension]
|
|
archiveVersion = jarVersion
|
|
}
|
|
|
|
// Produce packages
|
|
ospackage {
|
|
packageName = 'tcg-eventlog-tool'
|
|
os = LINUX
|
|
arch = NOARCH
|
|
version = "$packVersion"
|
|
release = '1'
|
|
|
|
user 'root'
|
|
fileMode = 0755
|
|
|
|
into ('/opt/eltool/lib') {
|
|
from jar.outputs.files
|
|
from configurations.runtimeClasspath
|
|
}
|
|
into ('/opt/eltool/scripts') {
|
|
from ('scripts') {
|
|
exclude {
|
|
FileTreeElement details ->
|
|
details.file.name.endsWith('.bat')
|
|
}
|
|
}
|
|
}
|
|
into ('/opt/eltool/docs') {
|
|
from ('docs') {
|
|
exclude {
|
|
FileTreeElement details ->
|
|
details.file.name.endsWith('.odt')
|
|
}
|
|
}
|
|
from('./') {
|
|
include {
|
|
FileTreeElement details ->
|
|
details.file.name.endsWith('.md')
|
|
}
|
|
}
|
|
}
|
|
// Copy vendor-table into /tmp to avoid conflict with the ACA
|
|
into('/opt/eltool/default-properties') {
|
|
from ('../../HIRS_Utils/src/main/resources/vendor-table.json') {
|
|
fileMode 0664
|
|
addParentDirs = true
|
|
}
|
|
}
|
|
|
|
// place elt link in system path to enable command line access
|
|
link("/usr/local/bin/elt", "/opt/eltool/scripts/eventlog.sh", 0x755)
|
|
|
|
// Post Install
|
|
postInstall "echo ${jarVersion} > /opt/eltool/VERSION"
|
|
// Post Uninstall
|
|
postUninstall 'rm -rf /opt/eltool'
|
|
|
|
buildRpm {
|
|
arch = X86_64
|
|
requires('hwdata', '0.314', GREATER | EQUAL)
|
|
}
|
|
buildDeb {
|
|
arch = 'amd64'
|
|
requires('hwdata', '0.314', GREATER | EQUAL)
|
|
}
|
|
|
|
}
|
|
|
|
|
|
task buildZip(type: Zip){
|
|
dependsOn jar
|
|
from(tasks.jar.archiveFile){
|
|
rename( filename ->
|
|
"${project.name}.jar")
|
|
into '/'
|
|
}
|
|
|
|
archiveBaseName.set(project.name)
|
|
destinationDirectory.set(file("$buildDir/distributions"))
|
|
archiveFileName.set("${project.name}.zip")
|
|
}
|
|
|
|
buildZip.dependsOn jar
|
|
//build.dependsOn buildZip |