-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
58 lines (49 loc) · 1.26 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
53
54
55
56
57
58
apply from: "gradle/vertx.gradle"
apply plugin: 'scala'
group = 'org.jokbal'
repositories {
mavenCentral()
}
dependencies {
// Libraries needed to run the scala tools
compile "org.scala-lang:scala-compiler:${scalaVersion}"
compile "org.scala-lang:scala-library:${scalaVersion}"
// Libraries needed for scala api
compile "org.scala-lang:scala-library:${scalaVersion}"
compile "io.vertx:lang-scala:${scalaLangModVersion}"
}
test {
jvmArgs "-XX:MaxPermSize=1024m"
systemProperty 'vertx.test.resources', 'src/test/script'
}
def configurePom(def pom) {
pom.project {
name rootProject.name
description 'pusher'
inceptionYear '2013'
packaging 'jar'
url 'swmaestro.kr'
/*
developers {
developer {
id 'developer id (e.g. github username)'
name 'developer name'
email 'developer email'
}
}
scm {
url 'url to your repo - e.g. github repo url'
}
licenses {
license {
name 'The name of the license used, e.g.: The Apache Software License, Version 2.0'
url 'URl to the license, e.g.: http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
}
}
properties {
setProperty('project.build.sourceEncoding', 'UTF8')
}
*/
}
}