Skip to content

Commit

Permalink
Updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
gbevin committed Oct 4, 2023
1 parent 95858f0 commit 400bb13
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ public class MyappBuild extends Project {
scope(test)
.include(dependency("org.junit.jupiter",
"junit-jupiter",
version(5,10,0)))
version(1,9,3)))
.include(dependency("org.junit.platform",
"junit-platform-console-standalone",
version(1,10,0)));
version(1,9,3)));
}

public static void main(String[] args) {
Expand All @@ -73,8 +73,8 @@ public class MyappBuild extends Project {


> **NOTE:** `bld` supports different ways to describe dependencies,
> `dependency("com.uwyn.rife2", "rife2", version(1,7,0))` can for instance also
> be written as `dependency("com.uwyn.rife2:rife2:1.7.0")`. Which format you use,
> `dependency("org.junit.jupiter", "junit-jupiter", version(1,9,3))` can for instance also
> be written as `dependency("org.junit.jupiter:junit-jupiter:1.9.3")`. Which format you use,
> is a matter of personal taste.
# Where does `bld` fit?
Expand Down

0 comments on commit 400bb13

Please sign in to comment.