forked from evant/gradle-retrolambda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
173 lines (142 loc) · 4.98 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
import org.ajoberstar.grgit.*
buildscript {
repositories {
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath 'org.ajoberstar:gradle-git:0.11.2'
// classpath "com.gradle.publish:plugin-publish-plugin:0.9.0"
}
}
//apply plugin: "com.gradle.plugin-publish"
apply plugin: 'groovy'
apply plugin: 'maven'
apply plugin: 'signing'
repositories {
mavenCentral()
}
group = 'me.tatarka'
version = '3.2.2'
sourceCompatibility = '1.6'
configurations {
provided
}
sourceSets {
main {
compileClasspath += configurations.provided
}
}
dependencies {
compile gradleApi()
compile localGroovy()
provided 'com.android.tools.build:gradle:1.0.0'
testCompile 'org.assertj:assertj-core:2.1.0'
testCompile 'com.android.tools.build:gradle:1.0.0'
testCompile 'com.neenbedankt.gradle.plugins:android-apt:1.6'
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from 'build/docs/javadoc'
}
task sourcesJar(type: Jar) {
from sourceSets.main.allSource
classifier = 'sources'
}
artifacts {
archives jar
archives javadocJar
archives sourcesJar
}
//pluginBundle {
// website = 'https://github.com/evant/gradle-retrolambda'
// vcsUrl = 'https://github.com/evant/gradle-retrolambda.git'
// description = 'https://github.com/evant/gradle-retrolambda.git'
// tags = ['java', 'android', 'lambda']
//
// plugins {
// retrolambdaPlugin {
// id = 'me.tatarka.retrolambda'
// displayName = 'gradle-retrolambda'
// }
// }
//}
signing {
sign configurations.archives
}
if (project.hasProperty('sonatype.username') && project.hasProperty('sonatype.password')) {
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { deployment -> signing.signPom(deployment) }
def repoUrl
if (project.version.endsWith("SNAPSHOT")) {
repoUrl = "https://oss.sonatype.org/content/repositories/snapshots"
} else {
repoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
}
repository(url: repoUrl) {
authentication(
userName: project.getProperty('sonatype.username'),
password: project.getProperty('sonatype.password'))
}
pom.project {
name 'gradle-retrolambda'
packaging 'jar'
description 'A gradle plugin for getting java lambda support in java 6, 7 and android'
url 'https://github.com/evant/gradle-retrolambda'
scm {
url 'git@github.com:evant/gradle-retrolambda.git'
connection 'scm:git:git@github.com:evant/gradle-retrolambda.git'
developerConnection 'scm:git:git@github.com:evant/gradle-retrolambda.git'
}
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 'evant'
name 'Evan Tatarka'
}
}
}
}
}
}
def grgit = Grgit.open(project.projectDir)
task checkRelease << {
def readmeVersion = file('README.md').readLines().find { it.contains('me.tatarka:gradle-retrolambda:') }?.trim()
if (readmeVersion == null) {
throw new ProjectConfigurationException("Missing README version string", null)
}
if (!readmeVersion.contains(":$version")) {
throw new ProjectConfigurationException("README version string: $readmeVersion must match release version: $version", null)
}
def changelogVersion = file('CHANGELOG.md').readLines().find { it.contains("### $version") }
if (changelogVersion == null) {
throw new ProjectConfigurationException("CHANGELOG does not contain changes for release version: $version", null)
}
def branchName = grgit.branch.current.name
if (branchName != 'master') {
throw new ProjectConfigurationException("Branch: $branchName must be master", null)
}
}
task tagRelease(dependsOn: [checkRelease]) << {
grgit.tag.add {
name = "v$version"
message = "Release of $version"
}
}
if (!version.endsWith('SNAPSHOT')) {
uploadArchives.dependsOn(tagRelease)
}
}
task printBuildScriptClasspath << {
println project.buildscript.configurations.classpath.asPath
}