forked from sun0x00/redtorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
57 lines (48 loc) · 1.24 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
group = 'xyz.redtorch'
version = '0.3.0'
description = """Java开源量化交易开发框架 http://redtorch.io/"""
ext {
springBootVersion = '2.1.5.RELEASE'
springTestVersion = '5.1.6.RELEASE'
disruptorVersion = '3.4.2'
chronicleQueueVersion = '5.17.12'
mongoJavaDriverVersion = '3.10.2'
}
subprojects {
tasks.withType(JavaCompile) {
sourceCompatibility = 11
targetCompatibility = 11
options.encoding = "UTF-8"
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
eclipse {
classpath {
downloadJavadoc = true
downloadSources = true
}
}
idea {
module {
downloadJavadoc = true
downloadSources = true
}
}
test.onlyIf {Boolean.getBoolean('skip.tests')}
repositories {
mavenLocal()
maven {
url "http://maven.aliyun.com/nexus/content/groups/public/"
}
jcenter()
mavenCentral()
}
dependencies {
//compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.12.0'
//compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.12.0'
compile 'org.slf4j:slf4j-api:1.7.26'
compile 'ch.qos.logback:logback-core:1.2.3'
compile 'ch.qos.logback:logback-classic:1.2.3'
}
}