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

Updated README

This commit is contained in:
Geert Bevin 2023-10-04 08:17:29 -04:00
parent 95858f0c29
commit 400bb13532

View file

@ -59,10 +59,10 @@ public class MyappBuild extends Project {
scope(test) scope(test)
.include(dependency("org.junit.jupiter", .include(dependency("org.junit.jupiter",
"junit-jupiter", "junit-jupiter",
version(5,10,0))) version(1,9,3)))
.include(dependency("org.junit.platform", .include(dependency("org.junit.platform",
"junit-platform-console-standalone", "junit-platform-console-standalone",
version(1,10,0))); version(1,9,3)));
} }
public static void main(String[] args) { public static void main(String[] args) {
@ -73,8 +73,8 @@ public class MyappBuild extends Project {
> **NOTE:** `bld` supports different ways to describe dependencies, > **NOTE:** `bld` supports different ways to describe dependencies,
> `dependency("com.uwyn.rife2", "rife2", version(1,7,0))` can for instance also > `dependency("org.junit.jupiter", "junit-jupiter", version(1,9,3))` can for instance also
> be written as `dependency("com.uwyn.rife2:rife2:1.7.0")`. Which format you use, > be written as `dependency("org.junit.jupiter:junit-jupiter:1.9.3")`. Which format you use,
> is a matter of personal taste. > is a matter of personal taste.
# Where does `bld` fit? # Where does `bld` fit?