Build converted to kotlin script

master
nathan 2019-03-17 23:06:01 +01:00
parent 9dd3cbb9ca
commit 0f4c43014a
2 changed files with 238 additions and 177 deletions

View File

@ -14,273 +14,345 @@
* limitations under the License. * limitations under the License.
*/ */
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
import java.nio.file.Paths
import java.time.Instant import java.time.Instant
import java.util.*
import kotlin.reflect.KMutableProperty
import kotlin.reflect.full.declaredMemberProperties
buildscript { ///////////////////////////////
// load properties from custom location ////// PUBLISH TO SONATYPE / MAVEN CENTRAL
def propsFile = Paths.get("${projectDir}/../../gradle.properties").normalize().toFile() //////
if (propsFile.canRead()) { ////// TESTING : local maven repo <PUBLISHING - publishToMavenLocal>
println("Loading custom property data from: ${propsFile}") //////
////// RELEASE : sonatype / maven central, <PUBLISHING - publish> then <RELEASE - closeAndReleaseRepository>
///////////////////////////////
def props = new Properties() println("\tGradle ${project.gradle.gradleVersion}")
propsFile.withInputStream {props.load(it)}
props.each {key, val -> project.ext.set(key, val)}
}
else {
ext.sonatypeUsername = ""
ext.sonatypePassword = ""
}
// for plugin publishing and license sources
repositories {
maven {url "https://plugins.gradle.org/m2/"}
}
dependencies {
// this is the only way to also get the source code for IDE auto-complete
classpath "gradle.plugin.com.dorkbox:Licensing:1.2.2"
classpath "gradle.plugin.com.dorkbox:Licensing:1.2.2:sources"
}
}
plugins { plugins {
id 'java' java
id 'maven-publish' signing
id 'signing' `maven-publish`
// close and release on sonatype // close and release on sonatype
id 'io.codearte.nexus-staging' version '0.11.0' id("io.codearte.nexus-staging") version "0.20.0"
id "com.dorkbox.CrossCompile" version "1.0.1" id("com.dorkbox.CrossCompile") version "1.0.1"
id "com.dorkbox.VersionUpdate" version "1.2" id("com.dorkbox.Licensing") version "1.4"
id("com.dorkbox.VersionUpdate") version "1.4.1"
// setup checking for the latest version of a plugin or dependency (and updating the gradle build) // setup checking for the latest version of a plugin or dependency
id "se.patrikerdes.use-latest-versions" version "0.2.3" id("com.github.ben-manes.versions") version "0.21.0"
id 'com.github.ben-manes.versions' version '0.16.0'
kotlin("jvm") version "1.3.21"
} }
// this is the only way to also get the source code for IDE auto-complete object Extras {
apply plugin: "com.dorkbox.Licensing" // set for the project
const val description = "Windows PE (Portable Executable) file parser for Java 6+"
const val group = "com.dorkbox"
const val version = "2.14"
// give us access to api/implementation differences for building java libraries // set as project.ext
apply plugin: 'java-library' const val name = "PeParser"
const val id = "PeParser"
const val vendor = "Dorkbox LLC"
const val url = "https://git.dorkbox.com/dorkbox/PeParser"
val buildDate = Instant.now().toString()
val JAVA_VERSION = JavaVersion.VERSION_1_6.toString()
project.description = 'Windows PE (Portable Executable) file parser for Java 6+' var sonatypeUserName = ""
project.group = 'com.dorkbox' var sonatypePassword = ""
project.version = '2.14' }
project.ext.name = 'PeParser' ///////////////////////////////
project.ext.url = 'https://git.dorkbox.com/dorkbox/PeParser' ///// assign 'Extras'
///////////////////////////////
description = Extras.description
group = Extras.group
version = Extras.version
val propsFile = File("$projectDir/../../gradle.properties").normalize()
if (propsFile.canRead()) {
println("\tLoading custom property data from: [$propsFile]")
sourceCompatibility = JavaVersion.VERSION_1_6 val props = Properties()
targetCompatibility = JavaVersion.VERSION_1_6 propsFile.inputStream().use {
props.load(it)
}
val extraProperties = Extras::class.declaredMemberProperties.filterIsInstance<KMutableProperty<String>>()
props.forEach { (k, v) -> run {
val key = k as String
val value = v as String
val member = extraProperties.find { it.name == key }
if (member != null) {
member.setter.call(Extras::class.objectInstance, value)
}
else {
project.extra.set(k, v)
}
}}
}
licensing { licensing {
license(License.APACHE_2) { license(License.BSD_3) {
author 'dorkbox, llc' author(Extras.vendor)
url project.ext.url author("Nathan Sweet")
note project.description author("Dan Brown")
url(Extras.url)
url("https://github.com/EsotericSoftware/minlog")
note(Extras.description)
} }
license('jOOU - Unsigned Numbers for Java', License.APACHE_2) {
copyright 2013 license("jOOU - Unsigned Numbers for Java", License.APACHE_2) {
author 'Lukas Eder, lukas.eder@gmail.com' copyright(2013)
url 'https://github.com/jOOQ/jOOU' author("Lukas Eder, lukas.eder@gmail.com")
url("https://github.com/jOOQ/jOOU")
} }
} }
sourceSets { sourceSets {
main { main {
java { java {
setSrcDirs Collections.singletonList('src') setSrcDirs(listOf("src"))
// want to include java files for the source. 'setSrcDirs' resets includes...
include("**/*.java")
} }
} }
} }
repositories { repositories {
mavenLocal() // this must be first! mavenLocal() // this must be first!
jcenter() jcenter()
} }
dependencies {
// utilities dependencies compile only
compileOnly(project('Utilities'))
// our main dependencies are ALSO the same as the limited utilities (they are not automatically pulled in from other sourceSets)
// needed by the utilities (custom since we don't want to include everything). IntelliJ includes everything, but our builds do not
}
/////////////////////////////// ///////////////////////////////
////// Task defaults ////// UTILITIES COMPILE
/////////////////////////////// ///////////////////////////////
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
tasks.withType(Jar) { // as long as the 'Utilities' project is ALSO imported into IntelliJ, class resolution will work (add the sources in the intellij project)
duplicatesStrategy DuplicatesStrategy.FAIL val utils : Configuration by configurations.creating
manifest { fun javaFile(vararg fileNames: String): Iterable<String> {
attributes['Implementation-Version'] = version val fileList = ArrayList<String>(fileNames.size)
attributes['Build-Date'] = Instant.now().toString()
attributes['Automatic-Module-Name'] = project.ext.name.toString()
}
}
/////////////////////////////// fileNames.forEach { name ->
////// UTILITIES COMPILE (for inclusion into jars) fileList.add(name.replace('.', '/') + ".java")
///////////////////////////////
static String[] utilFiles(String... fileNames) {
def fileList = [] as ArrayList
for (name in fileNames) {
def fixed = name.replace('.', '/') + '.java'
fileList.add(fixed)
} }
return fileList return fileList
} }
task compileUtils(type: JavaCompile) {
task<JavaCompile>("compileUtils") {
// we don't want the default include of **/*.java // we don't want the default include of **/*.java
getIncludes().clear() includes.clear()
source = Collections.singletonList('../Utilities/src') source = fileTree("../Utilities/src")
include(javaFile(
"dorkbox.util.OS",
"dorkbox.util.OSType",
include utilFiles('dorkbox.util.bytes.LittleEndian', "dorkbox.util.bytes.LittleEndian",
'dorkbox.util.bytes.UByte', "dorkbox.util.bytes.UByte",
'dorkbox.util.bytes.UInteger', "dorkbox.util.bytes.UInteger",
'dorkbox.util.bytes.ULong', "dorkbox.util.bytes.ULong",
'dorkbox.util.bytes.Unsigned', "dorkbox.util.bytes.Unsigned",
'dorkbox.util.bytes.UNumber', "dorkbox.util.bytes.UNumber",
'dorkbox.util.bytes.UShort') "dorkbox.util.bytes.UShort"
))
classpath = sourceSets.main.compileClasspath classpath = files(utils)
destinationDir = file("$rootDir/build/classes_utilities") destinationDir = file("$rootDir/build/classes_utilities")
} }
jar { ///////////////////////////////
dependsOn compileUtils ////// Task defaults
///////////////////////////////
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
// include applicable class files from subset of Utilities project sourceCompatibility = Extras.JAVA_VERSION
from compileUtils.destinationDir targetCompatibility = Extras.JAVA_VERSION
} }
///////////////////////////// tasks.withType<Jar> {
//// Maven Publishing + Release duplicatesStrategy = DuplicatesStrategy.FAIL
///////////////////////////// }
task sourceJar(type: Jar) {
tasks.jar.get().apply {
// include applicable class files from subset of Utilities project
from((tasks["compileUtils"] as JavaCompile).outputs)
manifest {
// https://docs.oracle.com/javase/tutorial/deployment/jar/packageman.html
attributes["Name"] = Extras.name
attributes["Specification-Title"] = Extras.name
attributes["Specification-Version"] = Extras.version
attributes["Specification-Vendor"] = Extras.vendor
attributes["Implementation-Title"] = "${Extras.group}.${Extras.id}"
attributes["Implementation-Version"] = Extras.buildDate
attributes["Implementation-Vendor"] = Extras.vendor
}
}
tasks.compileJava.get().apply {
println("\tCompiling classes to Java $sourceCompatibility")
}
dependencies {
api("com.dorkbox:TweenEngine:8.3")
// add compile utils to dependencies
implementation(files((tasks["compileUtils"] as JavaCompile).outputs))
}
///////////////////////////////
////// PUBLISH TO SONATYPE / MAVEN CENTRAL
//////
////// TESTING : local maven repo <PUBLISHING - publishToMavenLocal>
//////
////// RELEASE : sonatype / maven central, <PUBLISHING - publish> then <RELEASE - closeAndReleaseRepository>
///////////////////////////////
val sourceJar = task<Jar>("sourceJar") {
description = "Creates a JAR that contains the source code." description = "Creates a JAR that contains the source code."
from sourceSets.main.java from(sourceSets["main"].java)
classifier = "sources" archiveClassifier.set("sources")
} }
task javaDocJar(type: Jar) { val javaDocJar = task<Jar>("javaDocJar") {
description = "Creates a JAR that contains the javadocs." description = "Creates a JAR that contains the javadocs."
classifier = "javadoc" archiveClassifier.set("javadoc")
} }
// for testing, we don't publish to maven central, but only to local maven
publishing { publishing {
publications { publications {
maven(MavenPublication) { create<MavenPublication>("maven") {
from components.java groupId = Extras.group
artifactId = Extras.id
version = Extras.version
from(components["java"])
artifact(javaDocJar)
artifact(sourceJar) artifact(sourceJar)
artifact(javaDocJar)
groupId project.group
artifactId project.ext.name
version project.version
pom { pom {
name = project.ext.name name.set(Extras.name)
url = project.ext.url description.set(Extras.description)
description = project.description url.set(Extras.url)
issueManagement { issueManagement {
url = "${project.ext.url}/issues".toString() url.set("${Extras.url}/issues")
system = 'Gitea Issues' system.set("Gitea Issues")
} }
organization { organization {
name = 'dorkbox, llc' name.set(Extras.vendor)
url = 'https://dorkbox.com' url.set("https://dorkbox.com")
} }
developers { developers {
developer { developer {
name = 'dorkbox, llc' id.set("dorkbox")
email = 'email@dorkbox.com' name.set(Extras.vendor)
email.set("email@dorkbox.com")
} }
} }
scm { scm {
url = project.ext.url url.set(Extras.url)
connection = "scm:${project.ext.url}.git".toString() connection.set("scm:${Extras.url}.git")
} }
} }
}
}
repositories {
maven {
setUrl("https://oss.sonatype.org/service/local/staging/deploy/maven2")
credentials {
username = Extras.sonatypeUserName
password = Extras.sonatypePassword
}
} }
} }
repositories {
maven { tasks.withType<PublishToMavenRepository> {
url "https://oss.sonatype.org/service/local/staging/deploy/maven2" onlyIf {
credentials { publication == publishing.publications["maven"] && repository == publishing.repositories["maven"]
username sonatypeUsername
password sonatypePassword
}
} }
} }
tasks.withType<PublishToMavenLocal> {
onlyIf {
publication == publishing.publications["maven"]
}
}
// output the release URL in the console
tasks["releaseRepository"].doLast {
val url = "https://oss.sonatype.org/content/repositories/releases/"
val projectName = Extras.group.replace('.', '/')
val name = Extras.name
val version = Extras.version
println("Maven URL: $url$projectName/$name/$version/")
}
} }
nexusStaging { nexusStaging {
username sonatypeUsername username = Extras.sonatypeUserName
password sonatypePassword password = Extras.sonatypePassword
} }
signing { signing {
sign publishing.publications.maven sign(publishing.publications["maven"])
} }
// output the release URL in the console
releaseRepository.doLast {
def URL = 'https://oss.sonatype.org/content/repositories/releases/'
def projectName = project.group.toString().replaceAll('\\.', '/')
def name = project.ext.name
def version = project.version
println("Maven URL: ${URL}${projectName}/${name}/${version}/")
}
// we don't use maven with the plugin (it's uploaded separately to gradle plugins) ///////////////////////////////
tasks.withType(PublishToMavenRepository) { ///// Prevent anything other than a release from showing version updates
onlyIf { //// https://github.com/ben-manes/gradle-versions-plugin/blob/master/README.md
repository == publishing.repositories.maven && publication == publishing.publications.maven ///////////////////////////////
} tasks.named<DependencyUpdatesTask>("dependencyUpdates") {
} resolutionStrategy {
tasks.withType(PublishToMavenLocal) { componentSelection {
onlyIf { all {
publication == publishing.publications.maven val rejected = listOf("alpha", "beta", "rc", "cr", "m", "preview")
.map { qualifier -> Regex("(?i).*[.-]$qualifier[.\\d-]*") }
.any { it.matches(candidate.version) }
if (rejected) {
reject("Release candidate")
}
}
}
} }
// optional parameters
checkForGradleUpdate = true
} }
/////////////////////////////
//// Gradle Wrapper Configuration. ///////////////////////////////
/// Run this task, then refresh the gradle project ////// Gradle Wrapper Configuration.
///////////////////////////// ///// Run this task, then refresh the gradle project
task updateWrapper(type: Wrapper) { ///////////////////////////////
gradleVersion = '4.10.2' val wrapperUpdate by tasks.creating(Wrapper::class) {
gradleVersion = "5.2.1"
distributionUrl = distributionUrl.replace("bin", "all") distributionUrl = distributionUrl.replace("bin", "all")
setDistributionType(Wrapper.DistributionType.ALL)
} }

View File

@ -13,14 +13,3 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
include("Utilities")
for (project in rootProject.children) {
project.projectDir = file("../$project.name")
project.buildFileName = "utilities.gradle"
assert (project.projectDir.directory)
assert (project.buildFile.file)
}
enableFeaturePreview('STABLE_PUBLISHING')