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

@ -17,7 +17,7 @@ public class PropertyFileBuild extends Project {
public PropertyFileBuild() {
pkg = "rife.bld.extension";
name = "bld-property-file";
version = version(0, 9, 1, "SNAPSHOT");
version = version(0, 9, 1);
javadocOptions
.docLint(NO_MISSING)
.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.platform", "junit-platform-console-standalone", version(1, 9, 2)))
.include(dependency("org.assertj:assertj-joda-time:2.2.0"));
}
public static void main(String[] args) {

View file

@ -19,7 +19,7 @@ package rife.bld.extension.propertyfile;
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://github.com/gbevin">Geert Bevin</a>

View file

@ -22,7 +22,7 @@ import java.util.Date;
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>
* @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
*/

View file

@ -19,7 +19,7 @@ package rife.bld.extension.propertyfile;
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>
* @since 1.0