fome-fw/java_tools/enum_to_string/build.gradle

60 lines
1.4 KiB
Groovy
Raw Normal View History

plugins {
id 'java-library'
id 'com.github.johnrengelman.shadow' version '6.1.0'
}
repositories {
mavenCentral()
}
defaultTasks 'shadowJar'
dependencies {
// https://mvnrepository.com/artifact/com.google.code.findbugs/jsr305
implementation 'com.google.code.findbugs:jsr305:2.0.1'
implementation 'junit:junit:4.8.2'
implementation project(':logging')
implementation project(':logging-api')
implementation fileTree(dir: '../../java_console/lib', include: 'annotations.jar')
}
/*
don't use it, otherwise
you'll get jar only with
enum_to_string classes
for the full jar with logging*
use shadowJar task
*/
jar {
archivesBaseName = 'enum2string'
destinationDirectory = file( '$rootDir/../..' )
manifest {
attributes(
'Main-Class': 'com.rusefi.EnumToString'
)
}
}
shadowJar {
/*
to exclude suffix '-all'
in resulting archive file name
*/
archiveBaseName = 'enum2string'
archiveClassifier = ''
destinationDirectory = file( '$rootDir/../..' )
manifest {
inheritFrom project.tasks.jar.manifest
}
/*
to keep only classes from logging
and loggin-api as in build.xml
*/
dependencies {
exclude(dependency('com.google.code.findbugs:jsr305:.*'))
exclude(dependency('junit:junit:.*'))
exclude 'annotations.jar'
}
}