-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
178 lines (148 loc) · 4.56 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'maven'
apply plugin: 'signing'
apply plugin: 'sonar'
group = 'com.github.jelmerk'
archivesBaseName = 'liferay-plugin'
version = '0.1.0-SNAPSHOT'
sourceCompatibility = 1.6
targetCompatibility = 1.6
ext.isReleaseVersion = !version.endsWith("SNAPSHOT")
if (!hasProperty('sonatypeUsername')) {
ext.sonatypeUsername = ''
}
if (!hasProperty('sonatypePassword')) {
ext.sonatypePassword = ''
}
defaultTasks 'clean', 'test', 'integTest', 'install'
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compile gradleApi()
}
signing {
required { isReleaseVersion && gradle.taskGraph.hasTask("uploadArchives") }
sign configurations.archives
}
javadoc {
options.links = ['http://gradle.org/docs/1.6/javadoc/', 'http://docs.oracle.com/javase/6/docs/api/']
}
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { deployment ->
signing.signPom(deployment)
}
repository(url: 'https://oss.sonatype.org/service/local/staging/deploy/maven2/') {
authentication(userName: sonatypeUsername, password: sonatypePassword)
}
snapshotRepository(url: 'https://oss.sonatype.org/content/repositories/snapshots/') {
authentication(userName: sonatypeUsername, password: sonatypePassword)
}
}
}
}
configure(install.repositories.mavenInstaller) {
pom.project {
packaging = 'jar'
description 'Liferay plugin for Gradle'
url 'https://github.com/jelmerk/liferay-gradle-plugin'
scm {
connection 'scm:git:http://github.com/jelmerk/liferay-gradle-plugin.git'
developerConnection 'scm:git:https://github.com/jelmerk/liferay-gradle-plugin.git'
url 'https://github.com/jelmerk/liferay-gradle-plugin'
}
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
}
}
developers {
developer {
id 'jelmerk'
name 'Jelmer Kuperus'
timezone 'Europe/Amsterdam'
}
}
}
}
sonar {
// profile = 'Sun checkstyle checks'
server {
url = 'http://localhost:9000'
}
database {
url = 'jdbc:mysql://localhost:3306/sonar'
driverClassName = 'com.mysql.jdbc.Driver'
username = 'sonar'
password = 'sonar'
}
project {
dynamicAnalysis = "reuseReports"
withProjectProperties { props ->
props["sonar.core.codeCoveragePlugin"] = "jacoco"
props["sonar.jacoco.reportPath"] = "${buildDir}/jacoco.unit"
props["sonar.jacoco.itReportPath"] = "${buildDir}/jacoco.integration"
}
}
}
configurations {
jacoco
integTestCompile {
extendsFrom testCompile
}
integTestRuntime {
extendsFrom integTestCompile, testRuntime
}
}
sourceSets {
integTest {
compileClasspath = sourceSets.main.output + sourceSets.test.output + configurations.integTestCompile
runtimeClasspath = output + compileClasspath + configurations.integTestRuntime
}
}
idea {
module {
sourceDirs += sourceSets.integTest.allJava.srcDirs
}
}
dependencies {
jacoco group: 'org.jacoco', name: 'org.jacoco.agent', version: '0.6.2.201302030002', classifier: 'runtime'
}
test {
jvmArgs "-javaagent:${configurations.jacoco.asPath}=destfile=${buildDir}/jacoco.unit,includes=com.github.jelmerk.*"
}
task copyIntegTestProjects(type: Copy) {
from "src/integTest/projects"
into "${buildDir}/integTestProjects"
}
task integTest(type: Test) {
testSrcDirs = sourceSets.integTest.java.srcDirs.asList()
classpath = sourceSets.integTest.runtimeClasspath
testClassesDir = sourceSets.integTest.output.classesDir
description = 'Runs the integration tests.'
group = 'verification'
jvmArgs "-javaagent:${configurations.jacoco.asPath}=destfile=${buildDir}/jacoco.integration,includes=com.github.jelmerk.*",
"-DintegTestProjectsDir=${buildDir}/integTestProjects"
dependsOn jar, copyIntegTestProjects
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives sourcesJar
archives javadocJar
}
task wrapper(type: Wrapper) {
gradleVersion = '1.7'
}