Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed small typo in gradle.rst #165

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions src/assignments/tech-jobs-persistent.rst
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@ Part 1: Connect a Database to a Spring App
#. In the administration tab, create a new user, ``techjobs`` with the same settings as described in
the lesson tutorial. This user should have the password ``techjobs`` as well.

#. Update ``build.gradle`` with the necessary dependencies. At this point, you should be able to run the tests. Run the tests in `TestTaskOne` to verify your gradle dependencies.

#. Update ``src/resources/application.properties`` with the correct info. This will include
``spring.datasource.url`` set to the address of your database connection, as well as the username and password
for a user you have created. Refer to the tip below for the other properties you must add to complete your
database setup.

#. Update ``build.gradle`` with the necessary dependencies. At this point, you should be able to run the tests. Run the tests in `TestTaskOne` to verify your gradle dependencies.

.. admonition:: Tip

Expand Down
2 changes: 1 addition & 1 deletion src/chapters/tools-in-intelliJ/gradle.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ How Gradle Works
----------------

A Gradle build represents one or more **projects**.
Projects are craeted from a series of **tasks**.
Projects are created from a series of **tasks**.
Gradle manages tasks based on their function in the build.
Some tasks run tests, some compile, etc.
Gradle organizes these tasks in the ``build.gradle`` file.
Expand Down