You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
469 B
Groovy
20 lines
469 B
Groovy
|
2 years ago
|
plugins {
|
||
|
|
id 'java'
|
||
|
|
}
|
||
|
|
|
||
|
|
group 'org.rehome'
|
||
|
|
version '1.0-SNAPSHOT'
|
||
|
|
|
||
|
|
repositories {
|
||
|
|
mavenCentral()
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
implementation 'org.projectlombok:lombok:1.18.20'
|
||
|
|
implementation 'cn.hutool:hutool-all:5.8.5'
|
||
|
|
implementation 'org.apache.logging.log4j:log4j-api:2.17.1'
|
||
|
|
implementation 'org.apache.logging.log4j:log4j-core:2.17.1'
|
||
|
|
implementation 'com.google.code.gson:gson:2.8.6'
|
||
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
||
|
|
}
|