This repository has been archived on 2023-06-09. You can view files and clone it, but cannot push or open issues or pull requests.
Flan-s-Mod-Updater/build.gradle
2020-05-02 14:41:46 +02:00

34 lines
779 B
Groovy

plugins {
id 'java'
id "com.github.johnrengelman.shadow" version "5.2.0"
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
compileJava {
sourceCompatibility = targetCompatibility = '1.8'
compileJava.options.encoding = 'UTF-8'
}
dependencies {
compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.13.2'
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.13.2'
compile group: 'commons-io', name: 'commons-io', version: '2.6'
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'org.zeroturnaround:zt-zip:1.14'
}
jar {
manifest {
attributes(
"Class-Path": configurations.compile.collect { it.getName() }.join(' '))
}
}