Skip to content

Commit

Permalink
Updated examples to bld 1.5.19
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Apr 10, 2023
1 parent 0e89117 commit ff346ed
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bld.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: bld-ci
on: [ push, pull_request, workflow_dispatch ]

jobs:
build-gradle-project:
build-bld-project:
runs-on: ubuntu-latest

strategy:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# [Bld](https://github.com/rife2/rife2/wiki/What-Is-Bld) Extension to Create or Modify Properties Files
# [Bld](https://rife2.com/bld) Extension to Create or Modify Properties Files

[![License (3-Clause BSD)](https://img.shields.io/badge/license-BSD%203--Clause-blue.svg?style=flat-square)](http://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)
[![Release](https://flat.badgen.net/maven/v/metadata-url/repo.rife2.com/releases/com/uwyn/rife2/bld-property-file/maven-metadata.xml?color=blue)](https://repo.rife2.com/#/releases/com/uwyn/rife2/bld-property-file)
[![Snapshot](https://flat.badgen.net/maven/v/metadata-url/repo.rife2.com/snapshots/com/uwyn/rife2/bld-property-file/maven-metadata.xml?label=snapshot)](https://repo.rife2.com/#/snapshots/com/uwyn/rife2/bld-property-file)
[![GitHub CI](https://github.com/rife2/bld-property-file/actions/workflows/bld.yml/badge.svg)](https://github.com/rife2/bld-property-file/actions/workflows/bld.yml)

An extension for creating or modifying [property files](https://docs.oracle.com/javase/tutorial/essential/environment/properties.html) with [bld](https://github.com/rife2/rife2/wiki/What-Is-Bld). It is inspired by the [ant PropertyFile task](https://ant.apache.org/manual/Tasks/propertyfile.html).
An extension for creating or modifying [property files](https://docs.oracle.com/javase/tutorial/essential/environment/properties.html) with [bld](https://rife2.com/bld). It is inspired by the [ant PropertyFile task](https://ant.apache.org/manual/Tasks/propertyfile.html).

```java
@BuildCommand
Expand Down
4 changes: 2 additions & 2 deletions examples/.idea/libraries/bld.xml

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

2 changes: 1 addition & 1 deletion examples/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
],
"java.configuration.updateBuildConfiguration": "automatic",
"java.project.referencedLibraries": [
"${HOME}/.rife2/dist/rife2-1.5.17.jar",
"${HOME}/.rife2/dist/rife2-1.5.19.jar",
"lib/compile/*.jar",
"lib/runtime/*.jar",
"lib/test/*.jar"
Expand Down
Binary file modified examples/lib/bld/bld-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions examples/lib/bld/bld-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sun Apr 02 10:32:44 PDT 2023
bld.extension=com.uwyn.rife2:bld-property-file:0.9.1
bld.repositories=MAVEN_LOCAL,RIFE2
bld.repositories=MAVEN_LOCAL,RIFE2_RELEASES
bld.downloadExtensionSources=true
rife2.downloadLocation=
rife2.version=1.5.17
rife2.version=1.5.19
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import java.util.List;

import static rife.bld.dependencies.Repository.MAVEN_CENTRAL;
import static rife.bld.dependencies.Repository.RIFE2_RELEASES;
import static rife.bld.dependencies.Scope.test;
import static rife.bld.extension.propertyfile.Calc.ADD;

Expand All @@ -22,9 +23,11 @@ public PropertyFileExampleBuild() {
mainClass = "com.example.PropertyFileExampleMain";
version = version(0, 1, 0);

javaRelease = 17;
downloadSources = true;
autoDownloadPurge = true;
repositories = List.of(MAVEN_CENTRAL);
repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES);

scope(test)
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 9, 2)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 9, 2)));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class PropertyFileBuild extends Project {
public PropertyFileBuild() {
pkg = "rife.bld.extension";
name = "bld-property-file";
version = version(0, 9, 1);
version = version(0, 9, 2, "SNAPSHOT");

javaRelease = 17;
downloadSources = true;
Expand Down Expand Up @@ -61,4 +61,4 @@ public PropertyFileBuild() {
public static void main(String[] args) {
new PropertyFileBuild().start(args);
}
}
}

0 comments on commit ff346ed

Please sign in to comment.