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 documentation for buildscript repositories defined in profiles #441

Merged
merged 1 commit into from
Mar 1, 2016
Merged
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
18 changes: 14 additions & 4 deletions src/en/guide/profiles/profileStructure.gdoc
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,17 @@ repositories:
- "https://repo.grails.org/grails/core"
{code}

h4. 2) build.plugins
h4. 2) build.repositories

A list of Maven repositories to include in the buildscript section of the generated build. Example:

{code}
build:
repositories:
- "https://repo.grails.org/grails/core"
{code}

h4. 3) build.plugins

A list of Gradle plugins to configure in the generated build. Example:

Expand All @@ -48,7 +58,7 @@ build:
- org.grails.grails-core
{code}

h4. 3) build.excludes
h4. 4) build.excludes

A list of Gradle plugins to exclude from being inherited from the parent profile:

Expand All @@ -58,7 +68,7 @@ build:
- org.grails.grails-core
{code}

h4. 4) dependencies
h4. 5) dependencies

A map of scopes and dependencies to configure. The @excludes@ scope can be used to exclude from the parent profile. Example:

Expand All @@ -73,7 +83,7 @@ dependencies:
- "org.springframework.boot:spring-boot-autoconfigure"
{code}

h4. 5) features.defaults
h4. 6) features.defaults

A default list of features to use if no explicit features are specified.

Expand Down