diff --git a/build.gradle b/build.gradle index 8f80842..6e0dcd0 100644 --- a/build.gradle +++ b/build.gradle @@ -4,11 +4,13 @@ description = "Spring Cloud" buildscript { repositories { + jcenter() maven { url 'https://repo.spring.io/plugins-release' } } dependencies { classpath 'org.springframework.build.gradle:propdeps-plugin:0.0.7' classpath 'io.spring.gradle:spring-io-plugin:0.0.4.RELEASE' + classpath 'org.asciidoctor:asciidoctor-gradle-plugin:1.5.0' } } @@ -57,6 +59,17 @@ subprojects { apply plugin: 'propdeps-maven' apply plugin: 'propdeps-idea' apply plugin: 'propdeps-eclipse' + apply plugin: "org.asciidoctor.gradle.asciidoctor" + asciidoctor { + sourceDir = new File("docs/src/main/asciidoc") + outputDir = new File("docs/target/generated-docs") + options = [ + doctype: 'book', + attributes: [ + 'source-highlighter': 'coderay' + ] + ] + } apply from: "${rootProject.projectDir}/publish-maven.gradle" diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 3c7abdf..b5166da 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 3587769..b32681a 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ -#Fri Oct 31 16:08:34 CDT 2014 +#Wed Jul 29 17:29:08 CDT 2015 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=http\://services.gradle.org/distributions/gradle-1.12-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-1.12-bin.zip