-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathbuild.gradle
139 lines (118 loc) · 3.36 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
// First, apply the publishing plugin
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.gradle.publish:plugin-publish-plugin:0.9.10"
}
}
apply plugin: "com.gradle.plugin-publish"
description = 'gradle-scoverage is a Gradle plugin for calculating code coverage using Scoverage'
if (project.version == 'unspecified') {
version = '2.0.0-SNAPSHOT'
}
repositories {
mavenCentral()
}
ext {
website = 'http://scoverage.org'
vcsUrl = 'https://github.com/scoverage/gradle-scoverage.git'
scmUrl = "scm:git:$vcsUrl"
sonatypeUser = System.env.SONATYPE_USER
sonatypePass = System.env.SONATYPE_PASS
}
apply plugin: 'idea'
apply plugin: 'maven'
apply plugin: 'groovy'
group 'org.scoverage'
sourceCompatibility = '1.6'
targetCompatibility = '1.6'
configurations {
scoverage
compile.extendsFrom scoverage
}
dependencies {
compile gradleApi()
compile localGroovy()
scoverage "org.scoverage:scalac-scoverage-plugin_2.11:1.1.1"
testCompile 'junit:junit:4.12', 'org.hamcrest:hamcrest-library:1.3'
}
task groovydocJar(type: Jar, dependsOn: groovydoc) {
classifier = 'groovydoc'
from "$buildDir/docs/groovydoc"
}
task sourcesJar(type: Jar) {
from sourceSets.main.allSource
classifier = 'sources'
}
test {
dependsOn jar
}
artifacts {
archives jar
archives groovydocJar
archives sourcesJar
}
if (project.properties.containsKey('signing.keyId')) {
apply plugin: 'signing'
signing {
sign configurations.archives
}
}
pluginBundle {
website = project.website
vcsUrl = project.vcsUrl
description = project.description
tags = ['coverage', 'scala', 'scoverage']
plugins {
scoveragePlugin {
id = 'org.scoverage'
displayName = 'Gradle Scoverage plugin'
}
}
}
uploadArchives {
repositories {
mavenDeployer {
if (project.properties.containsKey('signing.keyId')) {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
}
snapshotRepository(url: 'https://oss.sonatype.org/content/repositories/snapshots') {
authentication(userName: sonatypeUser, password: sonatypePass)
}
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: sonatypeUser, password: sonatypePass)
}
pom.project {
name 'GradleScoverage'
description project.description
url project.website
scm {
url scmUrl
developerConnection scmUrl
}
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 'maiflai'
}
developer {
id 'ubourdon'
}
developer {
id 'D-Roch'
}
}
}
}
}
}