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
|
apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: 'java'
apply plugin: 'osgi'
apply plugin: 'maven'
apply plugin: 'signing'
group = 'org.ddogleg'
version = '0.17'
project.archivesBaseName = 'ddogleg'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
mavenLocal()
maven {
url = "https://oss.sonatype.org/content/repositories/snapshots/"
}
}
sourceSets {
benchmark {
java {
srcDir 'benchmark/src'
}
resources {
srcDir 'benchmark/resources'
}
}
main {
java {
srcDir 'src'
}
resources {
srcDir 'resources/src'
}
}
test {
java {
srcDir 'examples/src'
srcDir 'test'
srcDir 'generate'
srcDir 'benchmark/test'
}
resources {
srcDir 'resources/test'
}
}
}
dependencies {
['ejml-core','ejml-fdense','ejml-ddense','ejml-simple','ejml-dsparse'].each { String a ->
compile group: 'org.ejml', name: a, version: '0.38'}
compile 'com.google.code.findbugs:jsr305:3.0.2' // @Nullable
testImplementation(
'org.junit.jupiter:junit-jupiter-api:5.4.0'
)
testRuntimeOnly(
'org.junit.jupiter:junit-jupiter-engine:5.4.0'
)
testCompile project.sourceSets.benchmark.output
benchmarkCompile project.sourceSets.main.output
benchmarkCompile project.sourceSets.main.runtimeClasspath
benchmarkCompile project.sourceSets.main.compileClasspath
}
javadoc {
configure(options) {
links = [ 'http://docs.oracle.com/javase/8/docs/api/',
'http://ejml.org/javadoc/']
failOnError = false
}
}
jar {
manifest { // the manifest of the default jar is of type OsgiManifest
instruction 'Bundle-Vendor', 'DDogleg'
instruction 'Bundle-DocURL', 'http://ddogleg.org'
}
}
test {
ignoreFailures true
}
task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts {
archives javadocJar, sourcesJar
}
// 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 'DDogleg'
packaging 'pom'
// optionally artifactId can be defined here
description 'DDogleg Numerics is a high performance Java library for non-linear optimization, robust model fitting, polynomial root finding, sorting, and more.'
url 'http://ddogleg.org'
scm {
connection 'scm:git:git@github.com:lessthanoptimal/ddogleg.git'
developerConnection 'scm:git:git@github.com:lessthanoptimal/ddogleg.git'
url 'https://github.com/lessthanoptimal/ddogleg'
}
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 'peter.abeles@gmail.com'
}
}
}
}
}
}
}
// Creates a directory with all the compiled jars and the dependencies
task createLibraryDirectory( dependsOn: ['jar','sourcesJar'] ) {
doLast {
ext.listExternal = files(project.configurations.compile)
ext.listInternal = files(project.tasks.jar.archivePath)
ext.listSource = files(project.tasks.sourcesJar.archivePath)
ext.listExternal = ext.listExternal - ext.listInternal
file('libraries').deleteDir()
file('libraries').mkdir()
copy {
from ext.listExternal
into 'libraries'
}
copy {
from ext.listInternal
from ext.listSource
into 'libraries'
}
}
}
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 = project.fileTree('src').include('**/*.java')
classpath = project.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 = "DDogleg ($project.version)"
links = [ 'http://docs.oracle.com/javase/8/docs/api/',
'http://ejml.org/javadoc/' ]
bottom = file('misc/bottom.txt').text
}
}
task wrapper(type: Wrapper) {
distributionType = Wrapper.DistributionType.BIN
gradleVersion = '4.10.2'
}
|