Version 0.9.7

This commit is contained in:
Erik C. Thauvin 2024-08-30 14:42:49 -07:00
parent ade7898516
commit 791db7f890
Signed by: erik
GPG key ID: 776702A6A2DA330E
5 changed files with 23 additions and 23 deletions

View file

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

View file

@ -1,6 +1,6 @@
bld.downloadExtensionJavadoc=false bld.downloadExtensionJavadoc=false
bld.downloadExtensionSources=true bld.downloadExtensionSources=true
bld.downloadLocation= bld.downloadLocation=
bld.extension-pmd=com.uwyn.rife2:bld-pmd:1.1.4 bld.extension-pmd=com.uwyn.rife2:bld-pmd:1.1.5
bld.repositories=MAVEN_CENTRAL,MAVEN_LOCAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES bld.repositories=MAVEN_CENTRAL,MAVEN_LOCAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
bld.version=2.1.0 bld.version=2.1.0

View file

@ -34,7 +34,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, 7, "SNAPSHOT"); version = version(0, 9, 7);
javaRelease = 17; javaRelease = 17;
downloadSources = true; downloadSources = true;

View file

@ -48,6 +48,16 @@ public class EntryDate extends EntryBase<EntryDate> {
return this; return this;
} }
/**
* Sets the {@link java.time.format.DateTimeFormatter DateTimeFormatter} pattern.
*
* @param pattern the pattern
*/
public EntryDate pattern(String pattern) {
super.pattern(pattern);
return this;
}
/** /**
* Sets the new {@link java.util.Properties property} value to an {@link Instant} * Sets the new {@link java.util.Properties property} value to an {@link Instant}
* *
@ -145,16 +155,6 @@ public class EntryDate extends EntryBase<EntryDate> {
return this; return this;
} }
/**
* Sets the {@link java.time.format.DateTimeFormatter DateTimeFormatter} pattern.
*
* @param pattern the pattern
*/
public EntryDate pattern(String pattern) {
super.pattern(pattern);
return this;
}
/** /**
* The units available for {@link EntryDate} calculations. * The units available for {@link EntryDate} calculations.
* *

View file

@ -32,6 +32,16 @@ public class EntryInt extends EntryBase<EntryInt> {
super(key); super(key);
} }
/**
* Sets the {@link java.text.DecimalFormat DecimalFormat} pattern.
*
* @param pattern the pattern
*/
public EntryInt pattern(String pattern) {
super.pattern(pattern);
return this;
}
/** /**
* Sets the new {@link java.util.Properties property} value to an integer. * Sets the new {@link java.util.Properties property} value to an integer.
* *
@ -42,14 +52,4 @@ public class EntryInt extends EntryBase<EntryInt> {
newValue(i); newValue(i);
return this; return this;
} }
/**
* Sets the {@link java.text.DecimalFormat DecimalFormat} pattern.
*
* @param pattern the pattern
*/
public EntryInt pattern(String pattern) {
super.pattern(pattern);
return this;
}
} }