41 lines
864 B
Groovy
41 lines
864 B
Groovy
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.1'
|
|
}
|
|
}
|
|
|
|
apply plugin: 'java'
|
|
apply plugin: 'com.github.johnrengelman.shadow'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes "Main-Class": "com.baeldung.fatjar.Application"
|
|
}
|
|
|
|
from {
|
|
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
|
|
}
|
|
}
|
|
|
|
|
|
task customFatJar(type: Jar) {
|
|
manifest {
|
|
attributes 'Main-Class': 'com.baeldung.fatjar.Application'
|
|
}
|
|
baseName = 'all-in-one-jar'
|
|
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
|
|
with jar
|
|
}
|
|
|
|
|
|
dependencies{
|
|
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
|
|
compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.25'
|
|
} |