blob: f2a19b4265d6e2f2773a099bf9e1a3ef788c2256 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
group 'org.xapek.yvesf'
version '1.0-SNAPSHOT'
apply plugin: 'groovy'
apply plugin: 'application'
mainClassName = 'org.xapek.yvesf.classifieds.Main'
repositories {
mavenCentral()
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots/'
}
}
dependencies {
compile 'org.codehaus.groovy:groovy-all:2.3.11'
compile 'org.codehaus.groovy:http-builder:0.4.1'
testCompile group: 'junit', name: 'junit', version: '4.11'
}
run {
args('test.json')
}
|