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-01 23:33:00 +02:00

19 lines
467 B
Groovy

plugins {
id 'java'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
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'
}