forked from sirthias/parboiled
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
52 lines (43 loc) · 1.29 KB
/
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
48
49
50
51
52
allprojects {
apply plugin: 'java'
apply plugin: 'maven'
sourceCompatibility = '1.6'
group = 'com.lodgon.parboiled'
version = '1.1.7'
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
configurations {
deploy
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
testCompile 'org.testng:testng:6.8.8'
testCompile 'org.scala-lang:scala-library-all:2.11.3'
testCompile 'org.scalatest:scalatest_2.11:2.2.1'
deploy 'org.apache.maven.wagon:wagon-ssh:2.2'
}
uploadArchives {
repositories.mavenDeployer {
configuration = configurations.deploy
repository(url: "scp://maven.lodgon.com/home/maven/repository/maven2") {
authentication(userName: "maven")
}
}
}
}
project(':parboiled-java') {
dependencies {
compile group: project.group, name: 'parboiled-core', version: project.version
compile "org.ow2.asm:asm:5.0.3"
compile "org.ow2.asm:asm-analysis:5.0.3"
compile "org.ow2.asm:asm-tree:5.0.3"
compile "org.ow2.asm:asm-util:5.0.3"
}
}
project(':examples-java') {
dependencies {
compile group: project.group, name: 'parboiled-java', version: project.version
}
}