-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
61 lines (49 loc) · 1.56 KB
/
build.gradle
File metadata and controls
61 lines (49 loc) · 1.56 KB
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
59
60
61
apply from: "gradle/vertx.gradle"
dependencies {
provided "org.codehaus.groovy:groovy-all:$groovyVersion"
provided "io.vertx:lang-groovy:$groovyLangModVersion@jar"
compile 'com.gmongo:gmongo:1.1'
compile 'commons-logging:commons-logging:1.1.3'
compile('org.grails:grails-spring:2.3.3') {
exclude(module: 'grails-bootstrap')
exclude(module: 'groovy-all')
exclude(module: 'jcl-over-slf4j')
exclude(module: 'jul-to-slf4j')
exclude(module: 'concurrentlinkedhashmap-lruj')
}
testCompile 'org.spockframework:spock-core:0.7-groovy-2.0'
testCompile 'cglib:cglib-nodep:2.2'
testCompile 'de.flapdoodle.embed:de.flapdoodle.embed.mongo:1.41'
testCompile 'org.slf4j:slf4j-simple:1.7.5'
}
test {
}
def configurePom(def pom) {
pom.project {
name rootProject.name
description 'facilities for Groovy web developers'
inceptionYear '2014'
packaging 'jar'
url 'Your project url'
developers {
developer {
id 'gfrison'
name 'Giancarlo Frison'
email 'giancarlo@gfrison.com'
}
}
scm {
url 'https://github.com/gfrison/vertx-easyweb/'
}
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')
}
}
}