Skip to content

Commit

Permalink
Bumped bld to 1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Jan 31, 2024
1 parent fd5746f commit 1198181
Show file tree
Hide file tree
Showing 13 changed files with 36 additions and 28 deletions.
7 changes: 4 additions & 3 deletions .idea/libraries/bld.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![License (3-Clause BSD)](https://img.shields.io/badge/license-BSD%203--Clause-blue.svg?style=flat-square)](https://opensource.org/licenses/BSD-3-Clause)
[![Java](https://img.shields.io/badge/java-17%2B-blue)](https://www.oracle.com/java/technologies/javase/jdk17-archive-downloads.html)
[![bld](https://img.shields.io/badge/1.7.3-FA9052?label=bld&labelColor=2392FF)](https://rife2.com/bld)
[![bld](https://img.shields.io/badge/1.8.0-FA9052?label=bld&labelColor=2392FF)](https://rife2.com/bld)
[![release](https://img.shields.io/github/release/ethauvin/semver.svg)](https://github.com/ethauvin/semver/releases/latest)
[![Nexus Snapshot](https://img.shields.io/nexus/s/net.thauvin.erik/semver?label=snapshot&server=https%3A%2F%2Foss.sonatype.org%2F)](https://oss.sonatype.org/content/repositories/snapshots/net/thauvin/erik/semver/)
[![Maven Central](https://img.shields.io/maven-central/v/net.thauvin.erik/semver.svg)](https://central.sonatype.com/artifact/net.thauvin.erik/semver)
Expand Down
4 changes: 2 additions & 2 deletions examples/java/bld/.idea/libraries/bld.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified examples/java/bld/lib/bld/bld-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion examples/java/bld/lib/bld/bld-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ bld.extensions=
bld.repositories=MAVEN_CENTRAL,RIFE2_RELEASES
bld.downloadLocation=
bld.sourceDirectories=
bld.version=1.7.5
bld.version=1.8.0
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
2 changes: 1 addition & 1 deletion examples/kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id("application")
id("com.github.ben-manes.versions") version "0.49.0"
id("com.github.ben-manes.versions") version "0.51.0"
kotlin("jvm") version "1.9.10"
kotlin("kapt") version "1.9.10"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/kotlin/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
2 changes: 1 addition & 1 deletion examples/test/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'java'
id 'application'
id 'com.github.ben-manes.versions' version '0.46.0'
id 'com.github.ben-manes.versions' version '0.51.0'
}

// ./gradlew run
Expand Down
Binary file modified lib/bld/bld-wrapper.jar
Binary file not shown.
8 changes: 4 additions & 4 deletions lib/bld/bld-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
bld.downloadExtensionJavadoc=false
bld.downloadExtensionSources=true
bld.extension-exec=com.uwyn.rife2:bld-exec:0.9.0
bld.extension-jacoco=com.uwyn.rife2:bld-jacoco-report:0.9.1
bld.extension-pmd=com.uwyn.rife2:bld-pmd:0.9.3
bld.extension-exec=com.uwyn.rife2:bld-exec:0.9.1
bld.extension-jacoco=com.uwyn.rife2:bld-jacoco-report:0.9.2
bld.extension-pmd=com.uwyn.rife2:bld-pmd:0.9.5
bld.repositories=MAVEN_CENTRAL,RIFE2_RELEASES,MAVEN_LOCAL,RIFE2_SNAPSHOTS
bld.downloadLocation=
bld.sourceDirectories=
bld.version=1.7.5
bld.version=1.8.0
32 changes: 20 additions & 12 deletions src/bld/java/net/thauvin/erik/semver/SemverBuild.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ public SemverBuild() {

downloadSources = true;
autoDownloadPurge = true;

repositories = List.of(MAVEN_CENTRAL, SONATYPE_SNAPSHOTS);

scope(compile)
Expand All @@ -88,18 +89,25 @@ public SemverBuild() {
.version(version)
.description(description)
.url(url)
.developer(new PublishDeveloper()
.id("ethauvin")
.name("Erik C. Thauvin")
.email("[email protected]")
.url("https://erik.thauvin.net/"))
.license(new PublishLicense()
.name("The BSD 3-Clause License")
.url("http://opensource.org/licenses/BSD-3-Clause"))
.scm(new PublishScm()
.connection("scm:git:" + url + ".git")
.developerConnection("scm:git:[email protected]:ethauvin/" + name.toLowerCase() + ".git")
.url(url))
.developer(
new PublishDeveloper()
.id("ethauvin")
.name("Erik C. Thauvin")
.email("[email protected]")
.url("https://erik.thauvin.net/")
)
.license(
new PublishLicense()
.name("The BSD 3-Clause License")
.url("http://opensource.org/licenses/BSD-3-Clause")
)
.scm(
new PublishScm()
.connection("scm:git:" + url + ".git")
.developerConnection("scm:git:[email protected]:ethauvin/" + name.toLowerCase()
+ ".git")
.url(url)
)
.signKey(property("sign.key"))
.signPassphrase(property("sign.passphrase")));
}
Expand Down

0 comments on commit 1198181

Please sign in to comment.