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

19 lines
467 B
Groovy
Raw Normal View History

2020-01-05 10:03:36 +01:00
plugins {
id 'java'
}
2020-05-01 23:33:00 +02:00
group 'org.example'
version '1.0-SNAPSHOT'
2020-01-05 10:03:36 +01:00
repositories {
mavenCentral()
}
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
}