-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
36 lines (29 loc) · 782 Bytes
/
build.gradle
File metadata and controls
36 lines (29 loc) · 782 Bytes
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
/*
* Copyright IBM Corp. 2018 All Rights Reserved.
*
* SPDX-License-Identifier: Apache-2.0
*/
apply plugin: 'idea'
apply plugin: 'eclipse-wtp'
allprojects {
repositories {
mavenLocal()
jcenter()
}
}
subprojects {
apply plugin: 'java'
apply plugin: 'maven'
group = 'org.hyperledger.fabric-chaincode-java'
version = '1.4.0-SNAPSHOT'
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile 'commons-cli:commons-cli:1.4'
compile 'commons-logging:commons-logging:1.2'
testCompile 'junit:junit:4.12'
testCompile 'org.hamcrest:hamcrest-library:1.3'
testCompile 'org.mockito:mockito-core:2.+'
testCompile 'com.github.stefanbirkner:system-rules:1.17.0'
}
}