Skip to content

Commit 771b8bd

Browse files
committed
Bumped to bld 1.9.0
1 parent 719467f commit 771b8bd

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
lines changed

.idea/libraries/bld.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
],
1010
"java.configuration.updateBuildConfiguration": "automatic",
1111
"java.project.referencedLibraries": [
12-
"${HOME}/.bld/dist/bld-1.8.0.jar",
12+
"${HOME}/.bld/dist/bld-1.9.0.jar",
1313
"lib/**/*.jar"
1414
]
1515
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![License](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
44
[![Java](https://img.shields.io/badge/java-17%2B-blue)](https://www.oracle.com/java/technologies/javase/jdk17-archive-downloads.html)
55
[![Kotlin](https://img.shields.io/badge/kotlin-1.9.22-7f52ff.svg)](https://kotlinlang.org)
6-
[![bld](https://img.shields.io/badge/1.8.0-FA9052?label=bld&labelColor=2392FF)](https://rife2.com/bld)
6+
[![bld](https://img.shields.io/badge/1.9.0-FA9052?label=bld&labelColor=2392FF)](https://rife2.com/bld)
77
[![Release](https://flat.badgen.net/maven/v/metadata-url/repo.rife2.com/releases/com/uwyn/rife2/bld-kotlin/maven-metadata.xml?color=blue)](https://repo.rife2.com/#/releases/com/uwyn/rife2/bld-kotlin)
88
[![Snapshot](https://flat.badgen.net/maven/v/metadata-url/repo.rife2.com/snapshots/com/uwyn/rife2/bld-kotlin/maven-metadata.xml?label=snapshot)](https://repo.rife2.com/#/snapshots/com/uwyn/rife2/bld-kotlin)
99
[![GitHub CI](https://github.com/rife2/bld-kotlin/actions/workflows/bld.yml/badge.svg)](https://github.com/rife2/bld-kotlin/actions/workflows/bld.yml)

examples/.idea/libraries/bld.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
],
1010
"java.configuration.updateBuildConfiguration": "automatic",
1111
"java.project.referencedLibraries": [
12-
"${HOME}/.bld/dist/bld-1.8.0.jar",
12+
"${HOME}/.bld/dist/bld-1.9.0.jar",
1313
"lib/**/*.jar"
1414
]
1515
}

examples/lib/bld/bld-wrapper.jar

26 Bytes
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
bld.downloadExtensionJavadoc=false
22
bld.downloadExtensionSources=true
3-
bld.extensions=com.uwyn.rife2:bld-kotlin:0.9.0
3+
bld.extensions=com.uwyn.rife2:bld-kotlin:0.9.1
44
bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
55
bld.downloadLocation=
66
bld.sourceDirectories=
7-
bld.version=1.8.0
7+
bld.version=1.9.0

lib/bld/bld-wrapper.jar

26 Bytes
Binary file not shown.

lib/bld/bld-wrapper.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
bld.downloadExtensionJavadoc=false
22
bld.downloadExtensionSources=true
3-
bld.extension-pmd=com.uwyn.rife2:bld-pmd:0.9.5
4-
bld.repositories=MAVEN_CENTRAL,RIFE2_RELEASES
3+
bld.extension-pmd=com.uwyn.rife2:bld-pmd:0.9.7
4+
bld.repositories=MAVEN_CENTRAL,MAVEN_LOCAL,RIFE2_RELEASES
55
bld.downloadLocation=
66
bld.sourceDirectories=
7-
bld.version=1.8.0
7+
bld.version=1.9.0

src/bld/java/rife/bld/extension/CompileKotlinOperationBuild.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public class CompileKotlinOperationBuild extends Project {
3333
public CompileKotlinOperationBuild() {
3434
pkg = "rife.bld.extension";
3535
name = "bld-kotlin";
36-
version = version(0, 9, 1, "SNAPSHOT");
36+
version = version(0, 9, 1);
3737

3838
javaRelease = 17;
3939
downloadSources = true;
@@ -52,7 +52,7 @@ public CompileKotlinOperationBuild() {
5252
.include(dependency("org.jetbrains.dokka", "javadoc-plugin", dokka))
5353
.include(dependency("org.jetbrains.dokka", "gfm-plugin", dokka))
5454
.include(dependency("org.jetbrains.dokka", "jekyll-plugin", dokka))
55-
.include(dependency("com.uwyn.rife2", "bld", version(1, 8, 0)));
55+
.include(dependency("com.uwyn.rife2", "bld", version(1, 9, 0)));
5656
scope(test)
5757
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 2)))
5858
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 2)))

0 commit comments

Comments
 (0)