forked from quedexnet/java-market-maker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
47 lines (38 loc) · 947 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
45
46
47
plugins {
id 'java'
id 'idea'
id 'com.github.johnrengelman.shadow' version '1.2.3'
}
group 'net.quedex'
version '1.0'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots/'
}
}
dependencies {
compile('net.quedex:java-api:0.7.0-SNAPSHOT') { changing = true }
compile('ch.qos.logback:logback-classic:1.1.3')
compile('com.google.code.findbugs:jsr305:3.0.0')
compile('commons-configuration:commons-configuration:1.10')
compile('org.apache.commons:commons-math3:3.6')
}
wrapper {
gradleVersion '2.11'
}
idea {
project {
jdkName = sourceCompatibility
languageLevel = sourceCompatibility
}
}
shadowJar {
manifest {
attributes 'Main-Class': 'net.quedex.marketmaker.Main'
}
exclude 'market-maker.properties'
exclude 'quedex-config.properties'
}