.. | ||
.idea | ||
.vscode | ||
lib/bld | ||
src | ||
.gitignore | ||
bld | ||
bld.bat | ||
README.md |
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