Improved version template search path

This commit is contained in:
Erik C. Thauvin 2024-07-03 17:57:57 -07:00
parent c1c5433472
commit 7c07ad464b
Signed by: erik
GPG key ID: 776702A6A2DA330E
3 changed files with 13 additions and 9 deletions

View file

@ -66,7 +66,7 @@ public void genver() throws Exception {
.projectName("My App")
.packageName("com.example.myapp")
.className("MyAppVersion")
.classTemplate(new File(workDirectory, "myversion.txt"))
.classTemplate("myversion.txt")
.execute();
}
```