-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
46 lines (37 loc) · 983 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.javafxports:jfxmobile-plugin:1.0.0-b9'
}
}
apply plugin: 'idea'
allprojects {
version = '0.0.3-SNAPSHOT'
group = 'bit.beelin'
repositories {
jcenter()
// mavenLocal() // uncomment to use local snapshots
maven { url 'https://dl.bintray.com/msgilligan/maven' } // bitcoinj-addons (Namecoin RPC client)
}
}
subprojects {
apply plugin: 'java'
apply plugin: 'groovy'
dependencies {
compile 'org.slf4j:slf4j-api:1.7.7'
runtime 'org.slf4j:slf4j-jdk14:1.7.7' // Runtime implementation of slf4j
testCompile 'org.codehaus.groovy:groovy:2.4.4'
testCompile("org.spockframework:spock-core:1.0-groovy-2.4") {
exclude module: "groovy-all"
}
}
}
apply from: 'gradle/bintray.gradle'
idea {
project {
jdkName = '1.8'
languageLevel = '1.8'
}
}