plugins {
id 'java-library'
}
group = 'com.citi.158825.ETSFb'
version = '1.0-A20'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(8) // Adjust to 11 or 21 if needed
}
}
sourceSets {
main {
// This tells Gradle that 'src/main/config' is a resource folder
resources {
srcDirs = ['src/main/resources', 'src/main/config']
}
}
}
jar {
archiveBaseName = 'etsf'
manifest {
attributes(
'Implementation-Title': 'CPLS etsf Library',
'Implementation-Version': archiveVersion,
'Build-Time': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
)
}
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)