forked from lessthanoptimal/ejml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
258 lines (215 loc) · 7.43 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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
plugins {
id "com.peterabeles.gversion" version "1.6.2"
}
gversion {
srcDir = "main/ejml-core/src"
classPackage = "org.ejml"
className = "EjmlVersion"
}
allprojects {
apply plugin: 'idea'
apply plugin: 'eclipse'
group = 'org.ejml'
version = '0.39-SNAPSHOT'
}
subprojects {
apply plugin: 'java'
apply plugin: 'osgi'
apply plugin: 'maven'
apply plugin: 'signing'
sourceCompatibility = 1.8
targetCompatibility = 1.8
// Enable incremental compile. Should make single file changes faster
tasks.withType(JavaCompile) {
options.incremental = true
}
test {
ignoreFailures true
reports.html.enabled = false
}
repositories {
mavenCentral()
mavenLocal()
maven {
url = "https://oss.sonatype.org/content/repositories/snapshots/"
}
}
sourceSets {
main {
java {
srcDir 'src'
}
resources {
srcDir 'resources/src'
}
}
generate {
java {
srcDir 'generate'
}
compileClasspath += sourceSets.main.runtimeClasspath
}
benchmark {
java {
srcDir 'benchmarks/src'
}
resources {
srcDir 'benchmark/resources'
}
compileClasspath += sourceSets.main.runtimeClasspath
}
test {
java {
srcDir 'test'
srcDir 'benchmarks/test'
}
resources {
srcDir 'resources/test'
}
compileClasspath += sourceSets.benchmark.runtimeClasspath
}
}
dependencies {
compile 'com.google.code.findbugs:jsr305:3.0.2' // @Nullable
testCompile group: 'junit', name: 'junit', version: '4.12'
['core','generator-annprocess'].each { String a->
benchmarkCompile('org.openjdk.jmh:jmh-'+a+':1.19')
}
generateCompile project(':main:autocode')
}
jar {
manifest { // the manifest of the default jar is of type OsgiManifest
instruction 'Bundle-Vendor', 'EJML'
// instruction 'Bundle-Description', 'EJML'
instruction 'Bundle-DocURL', 'http://ejml.org/'
}
}
javadoc.failOnError = false
task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts {
archives sourcesJar
// archives javadocJar // uncomment for release
}
// if Maven central isn't setup in gradle.properties skip all of this
if( project.hasProperty('ossrhUsername') ) {
signing {
sign configurations.archives
}
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
pom.project {
name 'EJML'
packaging 'pom'
// optionally artifactId can be defined here
description 'A fast and easy to use dense and sparse matrix linear algebra library written in Java.'
url 'http://ejml.org/'
scm {
connection '[email protected]:lessthanoptimal/ejml.git'
developerConnection '[email protected]:lessthanoptimal/ejml.git'
url 'https://github.com/lessthanoptimal/ejml'
}
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
id 'pabeles'
name 'Peter Abeles'
email '[email protected]'
}
}
}
}
}
}
}
}
def allModules = [
':main:ejml-core',
':main:ejml-ddense',
':main:ejml-dsparse',
':main:ejml-fdense',
':main:ejml-zdense',
':main:ejml-cdense',
':main:ejml-simple',
':main:ejml-experimental',
]
// Creates a directory with all the comiled jars
task createLibraryDirectory( dependsOn: allModules.collect{ it+":jar"}+allModules.collect{ it+":sourcesJar"}) {
doLast {
// Create lists of .class jars and source jars
ext.listJars = files(allModules.collect{ project(it).tasks.jar.archivePath })
ext.listSource = files(allModules.collect{ project(it).tasks.sourcesJar.archivePath })
file('libraries').deleteDir()
file('libraries').mkdir()
copy {
from ext.listJars
from ext.listSource
into 'libraries'
}
}
}
def javadocProjects = [
':main:ejml-core',
':main:ejml-ddense',
':main:ejml-dsparse',
':main:ejml-fdense',
':main:ejml-zdense',
':main:ejml-cdense',
':main:ejml-simple'
]
task alljavadoc(type: Javadoc) {
// only include source code in src directory to avoid including 3rd party code which some projects do as a hack
source = javadocProjects.collect { project(it).fileTree('src').include('**/*.java') }
// source = javadocProjects.collect { project(it).sourceSets.main.allJava }
classpath = files(javadocProjects.collect { project(it).sourceSets.main.compileClasspath })
destinationDir = file("${buildDir}/docs/javadoc")
// Hack for Java 8u121 and beyond. Comment out if running an earlier version of Java
options.addBooleanOption("-allow-script-in-comments", true)
configure(options) {
failOnError = false
docTitle = "Efficient Java Matrix Library (EJML) v$project.version"
links = [ 'http://docs.oracle.com/javase/8/docs/api/' ]
bottom = file('docs/bottom.txt').text
}
}
task oneJarBin(type: Jar, dependsOn: javadocProjects.collect { it + ":compileJava" }) {
baseName = 'EJML'
from files(javadocProjects.collect { project(it).sourceSets.main.output })
}
wrapper {
distributionType = Wrapper.DistributionType.BIN
gradleVersion = '5.6.4'
}
project(':main:ejml-core').compileJava.dependsOn(createVersionFile)
// Disable the creation of jars for distribution. If you don't do this it will crash
[':main',':examples',':main:autocode'].each {String a ->
project(a) {
if( project.hasProperty('ossrhUsername') ) {
signArchives.enabled = false
}
sourcesJar.enabled = false
javadocJar.enabled = false
jar.enabled = false
uploadArchives.enabled = false
install.enabled = false
}
}