-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
37 lines (27 loc) · 968 Bytes
/
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
apply plugin:'groovy'
apply plugin:'idea'
apply plugin:'maven'
apply plugin:'code-quality'
group = "com.breskeby"
version = "0.1-SNAPSHOT"
codeNarcConfigFileName = "gradle/config/codenarc.groovy"
repositories{
mavenCentral()
}
dependencies{
compile "org.apache.maven.doxia:doxia-site-renderer:1.4"
compile "org.apache.maven.doxia:doxia-decoration-model:1.4"
compile "org.apache.maven.doxia:doxia-module-apt:1.4"
compile "org.apache.maven.doxia:doxia-module-xhtml:1.4"
compile "org.apache.maven.doxia:doxia-module-xdoc:1.4"
compile "org.apache.maven.wagon:wagon-provider-api:1.0"
//compile "org.apache.maven:maven-compat:3.0"
compile "org.apache.maven:maven-artifact-manager:2.2.1"
compile gradleApi()
compile localGroovy()
testCompile 'junit:junit:4.8.2', 'org.spockframework:spock-core:0.5-groovy-1.8@jar'
}
task wrapper(type: Wrapper) {
gradleVersion = '1.8'
jarFile = 'gradle/wrapper/gradle-wrapper.jar'
}