forked from ical4j/ical4j
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
170 lines (146 loc) · 4.5 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
buildscript {
repositories {
mavenCentral()
maven {
url 'http://maven.tmatesoft.com/content/repositories/releases/'
}
}
dependencies {
// classpath 'org.ajoberstar:gradle-git:0.8.0'
// classpath 'me.trnl:github-release-gradle-plugin:0.1'
classpath ('au.com.ish.gradle:release:2.2.2') {
exclude module: 'svnkit'
}
classpath 'org.hidetake:gradle-ssh-plugin:1.1.3'
}
}
apply plugin: 'java'
apply plugin: 'groovy'
apply plugin: 'osgi'
apply plugin: 'maven'
apply plugin: 'signing'
apply plugin: 'release'
//apply plugin: 'github-pages'
//apply plugin: 'github'
apply from: 'gradle/dist.gradle'
sourceCompatibility = 1.6
targetCompatibility = 1.6
/*
githubPages {
// repoUri = 'https://github.com/ical4j/ical4j.github.io.git'
repoUri = 'git@github.com:ical4j/ical4j.github.io.git'
pages {
from javadoc.outputs.files
}
}
*/
/*
github {
/* Wiki repo will be calculated from this. *
repo = 'git@github.com:ical4j/ical4j.git'
wiki {
/*
This is the same as used in Gradle Copy Task.
Please refer to Gradle documentation for information.
*
from javadoc.outputs.files {
into 'ical4j/javadoc'
}
into { "javadoc/$project.release.version" }
}
}
*/
repositories {
mavenCentral()
}
ext {
slf4jVersion = '1.7.10'
}
dependencies {
compile "org.slf4j:slf4j-api:$slf4jVersion",
'commons-codec:commons-codec:1.9',
'org.apache.commons:commons-lang3:3.3.2',
'org.codehaus.groovy:groovy-all:2.3.2',
'biz.aQute.bnd:bndlib:2.3.0'
testCompile 'org.spockframework:spock-core:0.7-groovy-2.0',
'commons-io:commons-io:2.4',
'org.ccil.cowan.tagsoup:tagsoup:1.2.1',
"org.slf4j:slf4j-log4j12:$slf4jVersion"
}
javadoc {
if (JavaVersion.current().isJava8Compatible()) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}
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
}
signing {
required { isReleaseVersion && gradle.taskGraph.hasTask("uploadArchives") }
sign configurations.archives
}
release {
failOnSnapshotDependencies = true
// allow modifications due to bug in the release plugin..
allowLocalModifications = true
// releaseDryRun = releaseDryRun
scm = 'git'
}
group = 'org.mnode.ical4j'
version = System.getenv('RELEASE_VERSION') ?: release.projectVersion
description = '''
A Java library for reading and writing iCalendar (*.ics) files
'''
ext {
isReleaseVersion = !version.endsWith("SNAPSHOT")
// sonatype credentials
sonatypeUsername = project.hasProperty('sonatypeUsername') ? project.getProperty('sonatypeUsername') : ''
sonatypePassword = project.hasProperty('sonatypePassword') ? project.getProperty('sonatypePassword') : ''
}
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment 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)
}
pom.project {
name project.name
packaging 'jar'
description project.description
url 'http://ical4j.sourceforge.net'
scm {
url 'https://github.com/ical4j/ical4j'
connection 'scm:git@github.com:ical4j/ical4j.git'
developerConnection 'scm:git@github.com:ical4j/ical4j.git'
}
licenses {
license {
name 'iCal4j - License'
url 'https://raw.githubusercontent.com/ical4j/ical4j/master/LICENSE'
distribution 'repo'
}
}
developers {
developer {
id 'fortuna'
name 'Ben Fortuna'
}
}
}
}
}
}