Version 0.9.1

This commit is contained in:
Erik C. Thauvin 2023-04-06 12:19:22 -07:00
parent bd0b504800
commit fedb9ff53d
12 changed files with 14 additions and 15 deletions

View file

@ -2,11 +2,11 @@
<library name="bld"> <library name="bld">
<CLASSES> <CLASSES>
<root url="file://$PROJECT_DIR$/lib/bld" /> <root url="file://$PROJECT_DIR$/lib/bld" />
<root url="jar://$USER_HOME$/.rife2/dist/rife2-1.5.16.jar!/" /> <root url="jar://$USER_HOME$/.rife2/dist/rife2-1.5.17.jar!/" />
</CLASSES> </CLASSES>
<JAVADOC /> <JAVADOC />
<SOURCES> <SOURCES>
<root url="jar://$USER_HOME$/.rife2/dist/rife2-1.5.16-sources.jar!/" /> <root url="jar://$USER_HOME$/.rife2/dist/rife2-1.5.17-sources.jar!/" />
</SOURCES> </SOURCES>
<excluded> <excluded>
<root url="jar://$PROJECT_DIR$/lib/bld/bld-wrapper.jar!/" /> <root url="jar://$PROJECT_DIR$/lib/bld/bld-wrapper.jar!/" />

View file

@ -7,7 +7,7 @@
], ],
"java.configuration.updateBuildConfiguration": "automatic", "java.configuration.updateBuildConfiguration": "automatic",
"java.project.referencedLibraries": [ "java.project.referencedLibraries": [
"${HOME}/.rife2/dist/rife2-1.5.16.jar", "${HOME}/.rife2/dist/rife2-1.5.17.jar",
"lib/compile/*.jar", "lib/compile/*.jar",
"lib/runtime/*.jar", "lib/runtime/*.jar",
"lib/test/*.jar" "lib/test/*.jar"

View file

@ -2,12 +2,12 @@
<library name="bld"> <library name="bld">
<CLASSES> <CLASSES>
<root url="file://$PROJECT_DIR$/lib/bld" /> <root url="file://$PROJECT_DIR$/lib/bld" />
<root url="jar://$USER_HOME$/.rife2/dist/rife2-1.5.16.jar!/" /> <root url="jar://$USER_HOME$/.rife2/dist/rife2-1.5.17.jar!/" />
<root url="file://$PROJECT_DIR$/lib/bld" /> <root url="file://$PROJECT_DIR$/lib/bld" />
</CLASSES> </CLASSES>
<JAVADOC /> <JAVADOC />
<SOURCES> <SOURCES>
<root url="jar://$USER_HOME$/.rife2/dist/rife2-1.5.16-sources.jar!/" /> <root url="jar://$USER_HOME$/.rife2/dist/rife2-1.5.17-sources.jar!/" />
<root url="file://$PROJECT_DIR$/lib/bld" /> <root url="file://$PROJECT_DIR$/lib/bld" />
</SOURCES> </SOURCES>
<jarDirectory url="file://$PROJECT_DIR$/lib/bld" recursive="false" /> <jarDirectory url="file://$PROJECT_DIR$/lib/bld" recursive="false" />

View file

@ -7,7 +7,7 @@
], ],
"java.configuration.updateBuildConfiguration": "automatic", "java.configuration.updateBuildConfiguration": "automatic",
"java.project.referencedLibraries": [ "java.project.referencedLibraries": [
"${HOME}/.rife2/dist/rife2-1.5.16.jar", "${HOME}/.rife2/dist/rife2-1.5.17.jar",
"lib/compile/*.jar", "lib/compile/*.jar",
"lib/runtime/*.jar", "lib/runtime/*.jar",
"lib/test/*.jar" "lib/test/*.jar"

Binary file not shown.

View file

@ -1,6 +1,6 @@
#Sun Apr 02 10:32:44 PDT 2023 #Sun Apr 02 10:32:44 PDT 2023
bld.extension=com.uwyn.rife2:bld-property-file:0.9.1-SNAPSHOT bld.extension=com.uwyn.rife2:bld-property-file:0.9.1
bld.repositories=MAVEN_LOCAL,RIFE2 bld.repositories=MAVEN_LOCAL,RIFE2
bld.downloadExtensionSources=true bld.downloadExtensionSources=true
rife2.downloadLocation= rife2.downloadLocation=
rife2.version=1.5.16 rife2.version=1.5.17

Binary file not shown.

View file

@ -1,2 +1,2 @@
#Sat Apr 01 10:09:33 PDT 2023 #Sat Apr 01 10:09:33 PDT 2023
rife2.version=1.5.16 rife2.version=1.5.17

View file

@ -17,7 +17,7 @@ public class PropertyFileBuild extends Project {
public PropertyFileBuild() { public PropertyFileBuild() {
pkg = "rife.bld.extension"; pkg = "rife.bld.extension";
name = "bld-property-file"; name = "bld-property-file";
version = version(0, 9, 1, "SNAPSHOT"); version = version(0, 9, 1);
javadocOptions javadocOptions
.docLint(NO_MISSING) .docLint(NO_MISSING)
.link("https://rife2.github.io/rife2/"); .link("https://rife2.github.io/rife2/");
@ -52,7 +52,6 @@ public class PropertyFileBuild extends Project {
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 9, 2))) .include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 9, 2)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 9, 2))) .include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 9, 2)))
.include(dependency("org.assertj:assertj-joda-time:2.2.0")); .include(dependency("org.assertj:assertj-joda-time:2.2.0"));
} }
public static void main(String[] args) { public static void main(String[] args) {

View file

@ -19,7 +19,7 @@ package rife.bld.extension.propertyfile;
import java.util.function.BiFunction; import java.util.function.BiFunction;
/** /**
* Declares the modifications to be made to a {@link java.util.Properties string-based property}. * Declares the modifications to be made to a {@link java.util.Properties String-based property}.
* *
* @author <a href="https://erik.thauvin.net/">Erik C. Thauvin</a> * @author <a href="https://erik.thauvin.net/">Erik C. Thauvin</a>
* @author <a href="https://github.com/gbevin">Geert Bevin</a> * @author <a href="https://github.com/gbevin">Geert Bevin</a>

View file

@ -22,7 +22,7 @@ import java.util.Date;
import java.util.function.IntFunction; import java.util.function.IntFunction;
/** /**
* Declares the modifications to be made to a {@link java.util.Properties date-based property}. * Declares the modifications to be made to a {@link java.util.Properties Date-based property}.
* *
* @author <a href="https://erik.thauvin.net/">Erik C. Thauvin</a> * @author <a href="https://erik.thauvin.net/">Erik C. Thauvin</a>
* @since 1.0 * @since 1.0
@ -48,7 +48,7 @@ public class EntryDate extends EntryBase {
} }
/** /**
* Sets the new {@link java.util.Properties property} value to an {@link LocalDate} * Sets the new {@link java.util.Properties property} value to a {@link LocalDate}
* *
* @param date the {@link LocalDate} to set the value to * @param date the {@link LocalDate} to set the value to
*/ */

View file

@ -19,7 +19,7 @@ package rife.bld.extension.propertyfile;
import java.util.function.IntFunction; import java.util.function.IntFunction;
/** /**
* Declares the modifications to be made to a {@link java.util.Properties integer-based property}. * Declares the modifications to be made to an {@link java.util.Properties Integer-based property}.
* *
* @author <a href="https://erik.thauvin.net/">Erik C. Thauvin</a> * @author <a href="https://erik.thauvin.net/">Erik C. Thauvin</a>
* @since 1.0 * @since 1.0