-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
163 lines (143 loc) · 3.67 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
// For bnd
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'biz.aQute.bnd:biz.aQute.bnd.gradle:4.1.0'
}
}
plugins {
id 'java'
id 'maven-publish'
id 'signing'
}
apply plugin: 'biz.aQute.bnd.builder'
group = 'org.daisy.dotify'
sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceSets {
main { java { srcDir 'src' } resources { srcDir 'src' } }
test { java { srcDir 'test' } resources { srcDir 'test' } }
}
compileJava {
options.encoding = 'UTF-8'
}
compileTestJava {
options.encoding = 'UTF-8'
}
def repoRevision = System.getenv("REPO_REVISION")!=null?System.getenv("REPO_REVISION"):repositoryRevision
javadoc {
options.encoding = 'UTF-8'
options.source = 8
options.links('https://docs.oracle.com/javase/8/docs/api/')
}
repositories {
mavenCentral()
//mavenLocal()
maven { url "https://oss.sonatype.org/content/groups/staging" }
//maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
}
dependencies {
compileOnly 'org.osgi:org.osgi.service.component.annotations:1.3.0'
compile 'org.daisy.streamline:streamline-api:1.4.0'
compile 'fr.opensagres.xdocreport:fr.opensagres.poi.xwpf.converter.xhtml:2.0.2'
compile 'fr.opensagres.xdocreport:fr.opensagres.odfdom.converter.xhtml:2.0.2'
compile 'org.jsoup:jsoup:1.12.1'
testImplementation group: "junit", name: "junit", version: "4.12"
}
jar {
manifest {
attributes(
'-sources': 'true',
'Import-Package': 'org.daisy.streamline.api.tasks; provide:=true, *',
//'Private-Package': 'org.daisy.dotify.impl.input.docs',
'Automatic-Module-Name': "$moduleName",
'Bundle-Name': "$moduleName",
'Bundle-SymbolicName': "$moduleName",
'Built-By': System.getProperty("user.name"),
'Built-On': new Date().format('yyyy-MM-dd'),
'Repository-Revision': "$repoRevision",
'Repository-URL': "$repositoryURL",
'Include-Resource': 'LICENSE, NOTICE'
)
}
}
task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
javadoc {
doLast {
copy {
from "src"
include "**/doc-files/*.*"
into new File(docsDir, "javadoc")
}
}
}
task zip(type: Zip, description: 'Packages the bundle for plugin distribution') {
from jar
from configurations.runtimeClasspath
}
ext.isReleaseVersion = !version.endsWith("SNAPSHOT")
signing {
required { isReleaseVersion }
sign publishing.publications
}
publishing {
//Only upload if a git hash is supplied. On Travis only upload snapshots.
//enabled = repoRevision.size()==40 && System.getenv("TRAVIS_BUILD_ID")!=null
publications {
maven(MavenPublication) {
from components.java
artifact sourcesJar
artifact javadocJar
/*
if (isReleaseVersion) {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
}*/
pom {
name = 'docs-to-html'
packaging = 'jar'
description = 'Converts docs to html'
url = "$repositoryURL"
scm {
connection = "$repositorySCM"
developerConnection = "$repositorySCM"
url = "$repositoryURL"
}
licenses {
license {
name = 'LGPL'
url = 'http://www.gnu.org/licenses/lgpl.html'
}
}
developers {
developer {
id = 'joel'
name = 'Joel Håkansson'
}
}
}
}
}
repositories {
maven {
def stagingRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
def snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots/"
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : stagingRepoUrl
credentials {
username = sonatypeUsername
password = sonatypePassword
}
}
}
}
wrapper {
distributionType = Wrapper.DistributionType.ALL
}