Skip to content

Commit

Permalink
Prepping for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
pspeed42 committed Apr 4, 2022
1 parent 7bda4a7 commit acf2155
Show file tree
Hide file tree
Showing 2 changed files with 146 additions and 110 deletions.
252 changes: 144 additions & 108 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,108 +1,144 @@
buildscript {
repositories {
if( JavaVersion.current() == JavaVersion.VERSION_1_7 ) {
// Fallback for JDK 7 that can no longer connect to jcenter with https
maven { url "http://jcenter.bintray.com" }
} else {
jcenter()
}
}
dependencies {
// This sucks down a lot of stuff that 'normal' users wouldn't
// have and won't need anyway.
if( project.hasProperty('releaseUser') ) {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.+'
}
}
}

apply plugin: 'java'
apply plugin: 'groovy'
apply plugin: 'maven'

version='1.4.2-SNAPSHOT'
group='com.simsilica'

ext.jmeVersion = "3.1.0-stable"
ext.slf4jVersion = '1.7.32'

// Version meta-data
ext {
releaseDescription = "Sim-Math ${project.version}"
releaseVcsTag = "${project.name}-v${project.version}"
}

// Project-wide meta-data
ext {
bintrayLabels = ['jMonkeyEngine', 'gamedev', 'math']
websiteUrl = 'https://github.com/Simsilica/SimMath'
vcsUrl = 'https://github.com/Simsilica/SimMath.git'
githubRepo = 'Simsilica/SimMath'
issueTrackerUrl = 'https://github.com/Simsilica/SimMath/issues'
}

repositories {
mavenLocal()

if( JavaVersion.current() == JavaVersion.VERSION_1_7 ) {
// Fallback for JDK 7 that can no longer connect to jcenter with https
maven { url "http://jcenter.bintray.com" }
} else {
jcenter()
}
}

sourceCompatibility = 1.7
compileJava {
options.encoding = 'UTF-8'
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}

// Make sure the build file declares what it actually imports
configurations.compile {
transitive = false
}

dependencies {
// Pull in jme core for the math package for easy translation to/from JME
// classes.
compile "org.jmonkeyengine:jme3-core:$jmeVersion"

compile "org.slf4j:slf4j-api:$slf4jVersion"

testCompile 'junit:junit:4.12'
testCompile 'org.codehaus.groovy:groovy-all:2.4.11'
}

test {
testLogging {
// I want to see the tests that are run and pass, etc.
events "passed", "skipped", "failed", "standardOut", "standardError"
}
}

// Configuration to produce maven-repo style -sources and -javadoc jars
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
exclude '**/.backups'
}

task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}

artifacts {
archives sourcesJar
archives javadocJar
}


// Put this at the end or it won't pick up the project.version and stuff
if( project.hasProperty('releaseUser') ) {
apply plugin: 'com.jfrog.bintray'
apply from: 'https://raw.githubusercontent.com/Simsilica/gradle-plugins/master/simtools-release.gradle'
}


/*
* SimMath build script.
*/

plugins {
id 'java-library'
id 'groovy'
id 'maven-publish'
id 'signing'
}

version='1.5.0'
group='com.simsilica'
ext.websiteUrl = 'https://github.com/Simsilica/SimMath'

ext.jmeVersion = "3.1.0-stable"
ext.slf4jVersion = '1.7.32'

repositories {
mavenCentral()
}

dependencies {
// Pull in jme core for the math package for easy translation to/from JME
// classes.
api "org.jmonkeyengine:jme3-core:$jmeVersion"

implementation "org.slf4j:slf4j-api:$slf4jVersion"

testImplementation 'junit:junit:4.12'
testImplementation 'org.codehaus.groovy:groovy-all:2.4.11'
}


compileJava { // compile-time options:
options.encoding = 'UTF-8'
options.compilerArgs << '-Xlint:unchecked'
options.deprecation = true
if( JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_1_10) ) {
options.release = 7
}
}

java {
sourceCompatibility = 1.7
targetCompatibility = 1.7
withJavadocJar()
withSourcesJar()
}

javadoc {
// Disable doclint for JDK8+.
if( JavaVersion.current().isJava8Compatible() ) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}

test {
testLogging {
// I want to see the tests that are run and pass, etc.
events "passed", "skipped", "failed", "standardOut", "standardError"
}
}

sourceSets {
main {
resources {
exclude "**/.backups/**"
}
}
}

publishing {
publications {
library(MavenPublication) {
from components.java
pom {
description = 'A double-based math package similar to JME\'s float-based math classes.'
developers {
developer {
name = 'Paul Speed'
}
}
inceptionYear = '2015'
licenses {
license {
distribution = 'repo'
name = 'New BSD (3-clause) License'
url = project.ext.websiteUrl + '/blob/master/license.md'
}
}
name = project.group + ':' + project.name
scm {
connection = 'scm:git:git://github.com/Simsilica/SimMath.git'
developerConnection = 'scm:git:ssh://github.com:Simsilica/SimMath.git'
url = project.ext.websiteUrl + '/tree/master'
}
url = project.ext.websiteUrl
}
}
}
// Staging to OSSRH relies on the existence of 2 properties
// (ossrhUsername and ossrhPassword)
// which should be stored in ~/.gradle/gradle.properties
repositories {
maven {
credentials {
username = project.hasProperty('ossrhUsername') ? ossrhUsername : 'Unknown user'
password = project.hasProperty('ossrhPassword') ? ossrhPassword : 'Unknown password'
}
name = 'OSSRH'

def releasesRepoUrl = 'https://oss.sonatype.org/service/local/staging/deploy/maven2'
def snapshotsRepoUrl = 'https://oss.sonatype.org/content/repositories/snapshots'
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl

//url = 'https://oss.sonatype.org/service/local/staging/deploy/maven2'
}
}
}

tasks.register('install') {
dependsOn 'publishToMavenLocal'
description 'Installs Maven artifacts to the local repository.'
}


// signing tasks

// Signing relies on the existence of 3 properties
// (signing.keyId, signing.password, and signing.secretKeyRingFile)
// which should be stored in ~/.gradle/gradle.properties

signing {
sign publishing.publications
}
tasks.withType(Sign) {
onlyIf { project.hasProperty('signing.keyId') }
}

// Customize some tasks
tasks.sourcesJar {
exclude "**/.backups/**"
}
4 changes: 2 additions & 2 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Version 1.5.0 (unreleased)
Version 1.5.0 (latest)
--------------
* Added Quatd.get(int) and Quatd.set(int, double) methods to be similar
to Vec3d in allowing individual components to be set by index.
* Published to sonatype/maven central


Version 1.4.1 (latest)
Version 1.4.1
--------------
* Added some copy constructors to Vec3d, Vec4d, and Quatd.
* Added getters for the start/end pos, rotation, visibility of
Expand Down

0 comments on commit acf2155

Please sign in to comment.