2
0
Fork 0
mirror of https://github.com/ethauvin/bld.git synced 2025-04-26 08:37:11 -07:00

Updated base project template to include repositories and sources download.

This commit is contained in:
Geert Bevin 2023-08-14 14:17:23 -04:00
parent cdaea733b2
commit 5de491e5c6

View file

@ -11,6 +11,9 @@ public class {{v projectBuild/}} extends BaseProject {
mainClass = "{{v package/}}.{{v projectMain/}}"; mainClass = "{{v package/}}.{{v projectMain/}}";
version = version(0,1,0); version = version(0,1,0);
downloadSources = true;
repositories = List.of(MAVEN_CENTRAL);
testOperation().mainClass("{{v package/}}.{{v projectTest/}}"); testOperation().mainClass("{{v package/}}.{{v projectTest/}}");
} }