-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
43 lines (37 loc) · 1.04 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
apply from: "gradle/vertx.gradle"
apply plugin: 'scala'
dependencies {
// Libraries needed to run the scala tools
scalaTools "org.scala-lang:scala-compiler:${project.scalaVersion}"
// Libraries needed for scala api
provided "org.scala-lang:scala-library:${project.scalaVersion}"
}
def configurePom(def pom) {
pom.project {
name 'Vert.x Session Manager'
description 'The session manager stores session data via the event bus'
inceptionYear '2013'
packaging 'zip'
url 'http://www.github.com/campudus/vertx-session-manager'
developers {
developer {
id 'Narigo'
name 'Joern Bernhardt'
email '[email protected]'
}
}
scm {
url 'git://github.com/campudus/vertx-session-manager.git'
}
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
}
}
properties {
setProperty('project.build.sourceEncoding', 'UTF8')
}
}
}