Skip to content
This repository has been archived by the owner on Jan 27, 2019. It is now read-only.

Commit

Permalink
#20 Optimized README
Browse files Browse the repository at this point in the history
  • Loading branch information
blaubaer committed Feb 26, 2017
1 parent 234ef44 commit 0bbeaa4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,13 @@ Find more plugins on [Gradle plugin repository](https://plugins.gradle.org/).
Plugin dependency for your ``build.gradle``
```groovy
plugins {
id "org.echocat.golang" version "<latest version of this plugin>"
// Use this variant if you use this as primary plugin
// In this case every task is simply named like: build, clean, test, ...
id 'org.echocat.golang' version '<latest version of this plugin>'
// Use this variant if you use this as secondary plugin
// for example if you also use Java in this build file.
// In this case every task is simply named like: golangBuild, golangClean, golangTest, ...
id 'org.echocat.golang-minor' version '<latest version of this plugin>'
}
```

Expand All @@ -76,13 +82,7 @@ See [Quick start](#quick-start) for information how to install requirements.

```groovy
plugins {
// Use this variant if you use this as primary plugin
// In this case every task is simply named like: build, clean, test, ...
id 'org.echocat.golang' version '<latest version of this plugin>'
// Use this variant if you use this as secondary plugin
// for example if you also use Java in this build file.
// In this case every task is simply named like: golangBuild, golangClean, golangTest, ...
id 'org.echocat.golang-minor' version '<latest version of this plugin>'
}
group 'github.com/my-user/my-project'
Expand Down

0 comments on commit 0bbeaa4

Please sign in to comment.