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

34 lines
779 B
Groovy
Raw Permalink Normal View History

2020-01-05 10:03:36 +01:00
plugins {
id 'java'
id "com.github.johnrengelman.shadow" version "5.2.0"
2020-01-05 10:03:36 +01:00
}
2020-05-01 23:33:00 +02:00
group 'org.example'
version '1.0-SNAPSHOT'
2020-01-05 10:03:36 +01:00
2020-01-05 10:03:36 +01:00
repositories {
mavenCentral()
}
compileJava {
sourceCompatibility = targetCompatibility = '1.8'
compileJava.options.encoding = 'UTF-8'
}
2020-01-05 10:03:36 +01:00
dependencies {
2020-05-01 23:33:00 +02:00
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'
2020-01-05 10:03:36 +01:00
}
2020-05-02 14:41:46 +02:00
jar {
manifest {
attributes(
"Class-Path": configurations.compile.collect { it.getName() }.join(' '))
}
}