-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
40 lines (33 loc) · 967 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
repositories {
mavenCentral()
}
group = "com.xetus.oss.iris"
version = "1.0-SNAPSHOT"
apply plugin: 'groovy'
apply plugin: "maven-publish"
apply plugin: 'application'
mainClassName = "com.xetus.iris.cli.Cli"
dependencies {
compile 'org.codehaus.groovy:groovy-all:2.3.9',
'org.slf4j:slf4j-api:1.7.5',
'org.slf4j:slf4j-simple:1.7.5',
'org.apache.httpcomponents:httpclient:4.3.6',
'com.github.briandilley.jsonrpc4j:jsonrpc4j:1.5.0',
'org.apache.commons:commons-lang3:3.4',
'com.googlecode.clichemaven:cliche:110413'
/*
* CAUTION: mockito-all pulls a version of Hamcrest that is incompatible
* with junit:4.11, so try to use mockito-core instead.
*
* See: http://stackoverflow.com/questions/7869711
*/
testCompile "junit:junit:4.11",
"org.mockito:mockito-core:1.9.5"
}
publishing {
publications {
dist(MavenPublication) {
from components.java
}
}
}