diff --git a/circle.yml b/circle.yml
new file mode 100644
index 0000000..3e841d9
--- /dev/null
+++ b/circle.yml
@@ -0,0 +1,20 @@
+general:
+ branches:
+ ignore:
+ - gh-pages # list of branches to ignore
+machine:
+ java:
+ version: oraclejdk8
+ environment:
+ _JAVA_OPTIONS: "-Xms1024m -Xmx2048m"
+dependencies:
+ override:
+ - ./mvnw -s .settings.xml -U --fail-never dependency:go-offline || true
+test:
+ override:
+ - ./mvnw -s .settings.xml clean org.jacoco:jacoco-maven-plugin:prepare-agent install -U -P sonar -nsu --batch-mode -Dmaven.test.redirectTestOutputToFile=true -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
+ post:
+ - find . -type f -regex ".*/spring-cloud-*.*/target/*.*" | cpio -pdm $CIRCLE_ARTIFACTS
+ - mkdir -p $CIRCLE_TEST_REPORTS/junit/
+ - find . -type f -regex ".*/target/.*-reports/.*" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
+ - bash <(curl -s https://codecov.io/bash)
diff --git a/docs/pom.xml b/docs/pom.xml
index e51ce98..1208c5d 100644
--- a/docs/pom.xml
+++ b/docs/pom.xml
@@ -14,7 +14,7 @@
spring-cloud-cloudfoundry
${basedir}/..
- 1.0.x
+ 1.0.x,2.0.x
@@ -31,11 +31,19 @@
docs
+
+ org.apache.maven.plugins
+ maven-dependency-plugin
+
org.asciidoctor
asciidoctor-maven-plugin
false
+
+ com.agilejava.docbkx
+ docbkx-maven-plugin
+
org.apache.maven.plugins
maven-antrun-plugin
diff --git a/docs/src/main/ruby/generate_readme.sh b/docs/src/main/ruby/generate_readme.sh
deleted file mode 100755
index 6d0ce9d..0000000
--- a/docs/src/main/ruby/generate_readme.sh
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/usr/bin/env ruby
-
-base_dir = File.join(File.dirname(__FILE__),'../../..')
-src_dir = File.join(base_dir, "/src/main/asciidoc")
-require 'asciidoctor'
-require 'optparse'
-
-options = {}
-file = "#{src_dir}/README.adoc"
-
-OptionParser.new do |o|
- o.on('-o OUTPUT_FILE', 'Output file (default is stdout)') { |file| options[:to_file] = file unless file=='-' }
- o.on('-h', '--help') { puts o; exit }
- o.parse!
-end
-
-file = ARGV[0] if ARGV.length>0
-
-# Copied from https://github.com/asciidoctor/asciidoctor-extensions-lab/blob/master/scripts/asciidoc-coalescer.rb
-doc = Asciidoctor.load_file file, safe: :unsafe, header_only: true, attributes: options[:attributes]
-header_attr_names = (doc.instance_variable_get :@attributes_modified).to_a
-header_attr_names.each {|k| doc.attributes[%(#{k}!)] = '' unless doc.attr? k }
-attrs = doc.attributes
-attrs['allow-uri-read'] = true
-puts attrs
-
-out = "// Do not edit this file (e.g. go instead to src/main/asciidoc)\n\n"
-doc = Asciidoctor.load_file file, safe: :unsafe, parse: false, attributes: attrs
-out << doc.reader.read
-
-unless options[:to_file]
- puts out
-else
- File.open(options[:to_file],'w+') do |file|
- file.write(out)
- end
-end
diff --git a/pom.xml b/pom.xml
index 45f0bf1..41dc52b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -10,15 +10,15 @@
org.springframework.cloud
spring-cloud-build
- 1.3.1.BUILD-SNAPSHOT
+ 1.3.5.BUILD-SNAPSHOT
cloudfoundry
${basedir}
- 1.3.0.BUILD-SNAPSHOT
- 1.2.0.BUILD-SNAPSHOT
+ 1.4.0.BUILD-SNAPSHOT
+ 1.3.0.BUILD-SNAPSHOT
diff --git a/spring-cloud-cloudfoundry-dependencies/pom.xml b/spring-cloud-cloudfoundry-dependencies/pom.xml
index c857336..53ce0d9 100644
--- a/spring-cloud-cloudfoundry-dependencies/pom.xml
+++ b/spring-cloud-cloudfoundry-dependencies/pom.xml
@@ -5,7 +5,7 @@
spring-cloud-dependencies-parent
org.springframework.cloud
- 1.3.1.BUILD-SNAPSHOT
+ 1.3.5.BUILD-SNAPSHOT
spring-cloud-cloudfoundry-dependencies