Skip to content
This repository has been archived by the owner on Jun 7, 2024. It is now read-only.

fixing doc for an error #36

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ You now have Gradle installed.


== Find out what Gradle can do
Add a new file by name 'settings.gradle'.
Now that Gradle is installed, see what it can do. Before you even create a build.gradle file for the project, you can ask it what tasks are available:

----
Expand Down Expand Up @@ -207,6 +208,7 @@ Here `HelloWorld` uses Joda Time's `LocalTime` class to get and print the curren
If you ran `gradle build` to build the project now, the build would fail because you have not declared Joda Time as a compile dependency in the build.

For starters, you need to add a source for 3rd party libraries.
Add below code in build.gradle.

[source,groovy]
----
Expand Down