bld-property-file/examples
2023-04-06 11:02:46 -07:00
..
.idea Added calc and modify functions 2023-04-04 09:01:12 -07:00
.vscode Added calc and modify functions 2023-04-04 09:01:12 -07:00
lib/bld Added EntryBase, EntryDate and EntryInt 2023-04-06 03:43:09 -07:00
src Minor Javadoc cleanup 2023-04-06 11:02:46 -07:00
.gitignore Initial commit 2023-04-02 15:29:27 -07:00
bld Initial commit 2023-04-02 15:29:27 -07:00
bld.bat Initial commit 2023-04-02 15:29:27 -07:00
README.md Minor README cleanup 2023-04-06 03:52:18 -07:00

Bld Property File Extension Examples

Compile

First make sure the project up-to-date and compiled:

./bld download compile

Run

To run the examples, issue one of the following command or combination there off.

./bld updateMajor run
./bld updateMinor run
./bld updatePatch run
./bld updateRelease run

Upon execution, the version.properties file will be created and displayed:

./bld updateMajor run
+---------------------------+
| version.properties        |
+---------------------------+
#
#Sun Apr 02 23:51:39 PDT 2023
build.date=2023-04-02
version.major=1
version.minor=0
version.patch=0

Subsequent commands will reflect the modifications to the version.major, version.minor or version.patch properties:

./bld upatePatch run
+---------------------------+
| version.properties        |
+---------------------------+
#
#Sun Apr 02 23:55:09 PDT 2023
build.date=2023-04-02
version.major=1
version.minor=0
version.patch=10

View the Examples Build