-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
44 lines (38 loc) · 1022 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
maven {
url "https://oss.sonatype.org/content/repositories/snapshots"
}
maven {
url "https://jcenter.bintray.com/"
}
maven {
url "https://jitpack.io/"
}
}
dependencies {
classpath "com.github.johnrengelman:shadow:8.1.0"
}
}
plugins {
id 'java'
id 'application'
id "com.github.johnrengelman.shadow" version "8.1.0"
}
application {
mainClass = 'org.foxesworld.cfgProvider.Test'
}
group 'org.foxesworld'
version '2.1.3-STABLE'
repositories {
mavenCentral()
}
apply plugin: "com.github.johnrengelman.shadow"
dependencies {
implementation group: 'com.google.code.gson', name: 'gson', version: '2.9.1'
implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.17.1'
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.17.1'
}