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

Add an example "buildscript" section to the README #67

Open
wants to merge 1 commit into
base: master
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
14 changes: 14 additions & 0 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,20 @@ This will add a `bake` task to your build, which will search for a standard http

WARNING: versions prior to `1.0.0` had a task named `jbake`. This task has been renamed to `bake` since `1.0.0`.

The plugin needs to be able to download dependencies from a maven repository (like maven central), so you need to configure this as well. Typically in your `build.gradle` file you might want to add this section at the top of the file:

[source,groovy]
----
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'commons-configuration:commons-configuration:1.10'
}
}
----

=== Init

You can initialise the project structure by running the following command:
Expand Down