-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
33 lines (25 loc) · 973 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
allprojects {
apply plugin: 'maven'
group = 'org.ogcs'
version = '1.0.0'
}
subprojects {
apply plugin: 'java'
sourceCompatibility = 1.8
targetCompatibility = 1.8
compileJava.options.encoding='UTF-8'
compileTestJava.options.encoding="UTF-8"
repositories {
mavenLocal()
maven { url 'https://repo1.maven.org/maven2/' }
maven { url 'http://maven.aliyun.com/nexus/content/repositories/central/' }
maven { url "http://repo.maven.apache.org/maven2" }
}
dependencies {
compile group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.9.1'
compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.9.1'
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.9.1'
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
compile group: 'org.slf4j', name: 'jcl-over-slf4j', version: '1.7.25'
}
}