Skip to content
Snippets Groups Projects
Commit b32b092f authored by Nicholas Blair's avatar Nicholas Blair
Browse files

docs: correct documentation for buildscript block

parent 01dca8c4
No related branches found
No related tags found
1 merge request!1docs: correct documentation for buildscript block, add local confirmProjectVersionIncrementedTask
...@@ -9,12 +9,16 @@ To get the dependency, you will need a `buildscript` block at the top of your bu ...@@ -9,12 +9,16 @@ To get the dependency, you will need a `buildscript` block at the top of your bu
``` ```
buildscript { buildscript {
repositories { repositories {
repository(url: "https://code.doit.wisc.edu/maven/content/repositories/uw-releases") { maven () {
authentication(userName: codeDoitUsername, password: codeDoitPassword) url "https://code.doit.wisc.edu/maven/content/repositories/uw-releases"
credentials {
username codeDoitUsername
password codeDoitPassword
}
} }
} }
dependencies { dependencies {
classpath 'edu.wisc.doit.adi.gradle:continuous-publish-plugin:0.1.0-SNAPSHOT' classpath 'edu.wisc.doit.gradle:continuous-publish-plugin:0.1.0'
} }
} }
``` ```
......
group 'edu.wisc.doit.gradle' group 'edu.wisc.doit.gradle'
version '0.1.0' version '0.1.1'
apply plugin: 'groovy' apply plugin: 'groovy'
apply plugin: 'idea' apply plugin: 'idea'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment