diff --git a/.gitignore b/.gitignore
index 45a83771..885ee641 100644
--- a/.gitignore
+++ b/.gitignore
@@ -34,3 +34,4 @@ target/
interpolated-settings.xml
interpolated-pom.xml
+consul
diff --git a/docs/target/generated-docs/ghpages.sh b/docs/target/generated-docs/ghpages.sh
deleted file mode 100644
index a5d1acd5..00000000
--- a/docs/target/generated-docs/ghpages.sh
+++ /dev/null
@@ -1,129 +0,0 @@
-#!/bin/bash -x
-
-git remote set-url --push origin `git config remote.origin.url | sed -e 's/^git:/https:/'`
-
-if ! (git remote set-branches --add origin gh-pages && git fetch -q); then
- echo "No gh-pages, so not syncing"
- exit 0
-fi
-
-if ! [ -d docs/target/generated-docs ]; then
- echo "No gh-pages sources in docs/target/generated-docs, so not syncing"
- exit 0
-fi
-
-# The script should be executed from the root folder
-
-ROOT_FOLDER=`pwd`
-echo "Current folder is ${ROOT_FOLDER}"
-
-if [[ ! -e "${ROOT_FOLDER}/.git" ]]; then
- echo "You're not in the root folder of the project!"
- exit 1
-fi
-
-# Retrieve properties
-###################################################################
-
-# Prop that will let commit the changes
-COMMIT_CHANGES="no"
-MAVEN_PATH=${MAVEN_PATH:-}
-echo "Path to Maven is [${MAVEN_PATH}]"
-
-# Code getting the name of the current branch. For master we want to publish as we did until now
-# http://stackoverflow.com/questions/1593051/how-to-programmatically-determine-the-current-checked-out-git-branch
-# If there is a branch already passed will reuse it - otherwise will try to find it
-CURRENT_BRANCH=${BRANCH}
-if [[ -z "${CURRENT_BRANCH}" ]] ; then
- CURRENT_BRANCH=$(git symbolic-ref -q HEAD)
- CURRENT_BRANCH=${CURRENT_BRANCH##refs/heads/}
- CURRENT_BRANCH=${CURRENT_BRANCH:-HEAD}
-fi
-echo "Current branch is [${CURRENT_BRANCH}]"
-git checkout ${CURRENT_BRANCH}
-
-# Get the name of the `docs.main` property
-MAIN_ADOC_VALUE=$("${MAVEN_PATH}"mvn -q \
- -Dexec.executable="echo" \
- -Dexec.args='${docs.main}' \
- --non-recursive \
- org.codehaus.mojo:exec-maven-plugin:1.3.1:exec)
-echo "Extracted 'main.adoc' from Maven build [${MAIN_ADOC_VALUE}]"
-
-# Get whitelisted branches - assumes that a `docs` module is available under `docs` profile
-WHITELIST_PROPERTY="docs.whitelisted.branches"
-WHITELISTED_BRANCHES_VALUE=$("${MAVEN_PATH}"mvn -q \
- -Dexec.executable="echo" \
- -Dexec.args="\${${WHITELIST_PROPERTY}}" \
- org.codehaus.mojo:exec-maven-plugin:1.3.1:exec \
- -P docs \
- -pl docs)
-echo "Extracted '${WHITELIST_PROPERTY}' from Maven build [${WHITELISTED_BRANCHES_VALUE}]"
-
-# Stash any outstanding changes
-###################################################################
-git diff-index --quiet HEAD && dirty=$? || (echo "Failed to check if the current repo is dirty. Assuming that it is." && dirty="1")
-if [ "$dirty" != "0" ]; then git stash; fi
-
-# Switch to gh-pages branch to sync it with master
-###################################################################
-git checkout gh-pages
-git pull origin gh-pages
-
-# Add git branches
-###################################################################
-mkdir -p ${ROOT_FOLDER}/${CURRENT_BRANCH}
-if [[ "${CURRENT_BRANCH}" == "master" ]] ; then
- echo -e "Current branch is master - will copy the current docs only to the root folder"
- for f in docs/target/generated-docs/*; do
- file=${f#docs/target/generated-docs/*}
- if ! git ls-files -i -o --exclude-standard --directory | grep -q ^$file$; then
- # Not ignored...
- cp -rf $f ${ROOT_FOLDER}/
- git add -A ${ROOT_FOLDER}/$file
- fi
- done
- COMMIT_CHANGES="yes"
-else
- echo -e "Current branch is [${CURRENT_BRANCH}]"
- # http://stackoverflow.com/questions/29300806/a-bash-script-to-check-if-a-string-is-present-in-a-comma-separated-list-of-strin
- if [[ ",${WHITELISTED_BRANCHES_VALUE}," = *",${CURRENT_BRANCH},"* ]] ; then
- echo -e "Branch [${CURRENT_BRANCH}] is whitelisted! Will copy the current docs to the [${CURRENT_BRANCH}] folder"
- for f in docs/target/generated-docs/*; do
- file=${f#docs/target/generated-docs/*}
- if ! git ls-files -i -o --exclude-standard --directory | grep -q ^$file$; then
- # Not ignored...
- # We want users to access 1.0.0.RELEASE/ instead of 1.0.0.RELEASE/spring-cloud.sleuth.html
- if [[ "${file}" == "${MAIN_ADOC_VALUE}.html" ]] ; then
- # We don't want to copy the spring-cloud-sleuth.html
- # we want it to be converted to index.html
- cp -rf $f ${ROOT_FOLDER}/${CURRENT_BRANCH}/index.html
- git add -A ${ROOT_FOLDER}/${CURRENT_BRANCH}/index.html
- else
- cp -rf $f ${ROOT_FOLDER}/${CURRENT_BRANCH}
- git add -A ${ROOT_FOLDER}/${CURRENT_BRANCH}/$file
- fi
- fi
- done
- COMMIT_CHANGES="yes"
- else
- echo -e "Branch [${CURRENT_BRANCH}] is not on the white list! Check out the Maven [${WHITELIST_PROPERTY}] property in
- [docs] module available under [docs] profile. Won't commit any changes to gh-pages for this branch."
- fi
-fi
-
-if [[ "${COMMIT_CHANGES}" == "yes" ]] ; then
- git commit -a -m "Sync docs from ${CURRENT_BRANCH} to gh-pages"
-
- # Uncomment the following push if you want to auto push to
- # the gh-pages branch whenever you commit to master locally.
- # This is a little extreme. Use with care!
- ###################################################################
- git push origin gh-pages
-fi
-
-# Finally, switch back to the master branch and exit block
-git checkout ${CURRENT_BRANCH}
-if [ "$dirty" != "0" ]; then git stash pop; fi
-
-exit 0
\ No newline at end of file
diff --git a/docs/target/generated-docs/images/.gitkeep b/docs/target/generated-docs/images/.gitkeep
deleted file mode 100644
index e69de29b..00000000
diff --git a/docs/target/generated-docs/spring-cloud-consul.html b/docs/target/generated-docs/spring-cloud-consul.html
deleted file mode 100644
index 312df286..00000000
--- a/docs/target/generated-docs/spring-cloud-consul.html
+++ /dev/null
@@ -1,860 +0,0 @@
-
-
-
-
-
-
-
-Spring Cloud Consul
-
-
-
-
-
-
-
-
-
-
This project provides Consul integrations for Spring Boot apps through autoconfiguration
-and binding to the Spring Environment and other Spring programming model idioms. With a few
-simple annotations you can quickly enable and configure the common patterns inside your
-application and build large distributed systems with Consul based components. The
-patterns provided include Service Discovery, Control Bus and Configuration.
-Intelligent Routing (Zuul) and Client Side Load Balancing (Ribbon), Circuit Breaker
-(Hystrix) are provided by integration with Spring Cloud Netflix.
-
-
-
-
-
-
Consul Agent
-
-
-
A Consul Agent client must be available to all Spring Cloud Consul applications. By default, the Agent client is expected to be at localhost:8500. See the Agent documentation for specifics on how to start an Agent client and how to connect to a cluster of Consul Agent Servers. For development, after you have installed consul, you may start a Consul Agent using the following command:
-
-
-
-
./src/main/bash/local_run_consul.sh
-
-
-
-
-
-
-
Service Discovery with Consul
-
-
-
Service Discovery is one of the key tenets of a microservice based architecture. Trying to hand configure each client or some form of convention can be very difficult to do and can be very brittle. Consul provides Service Discovery services via an HTTP API and DNS . Spring Cloud Consul leverages the HTTP API for service registration and discovery. This does not prevent non-Spring Cloud applications from leveraging the DNS interface. Consul Agents servers are run in a cluster that communicates via a gossip protocol and uses the Raft consensus protocol .
-
-
-
Registering with Consul
-
-
When a client registers with Consul, it provides meta-data about itself such as host and port, id, name and tags. An HTTP Check is created by default that Consul hits the /health endpoint every 10 seconds. If the health check fails, the service instance is marked as critical.
-
-
-
Example Consul client:
-
-
-
-
@SpringBootApplication
-@EnableDiscoveryClient
-@RestController
-public class Application {
-
- @RequestMapping("/")
- public String home() {
- return "Hello world";
- }
-
- public static void main(String[] args) {
- new SpringApplicationBuilder(Application.class).web(true).run(args);
- }
-
-}
-
-
-
-
(i.e. utterly normal Spring Boot app). If the Consul client is located somewhere other than localhost:8500, the configuration is required to locate the client. Example:
-
-
-
application.yml
-
-
spring:
- cloud:
- consul:
- host: localhost
- port: 8500
-
-
-
-
-
-
-Caution
-
-
-If you use Spring Cloud Consul Config , the above values will need to be placed in bootstrap.yml instead of application.yml.
-
-
-
-
-
-
The default service name, instance id and port, taken from the Environment, are ${spring.application.name}, the Spring Context ID and ${server.port} respectively.
-
-
-
@EnableDiscoveryClient make the app into both a Consul "service" (i.e. it registers itself) and a "client" (i.e. it can query Consul to locate other services).
-
-
-
-
HTTP Health Check
-
-
The health check for a Consul instance defaults to "/health", which is the default locations of a useful endpoint in a Spring Boot Actuator application. You need to change these, even for an Actuator application if you use a non-default context path or servlet path (e.g. server.servletPath=/foo) or management endpoint path (e.g. management.contextPath=/admin). The interval that Consul uses to check the health endpoint may also be configured. "10s" and "1m" represent 10 seconds and 1 minute respectively. Example:
-
-
-
application.yml
-
-
spring:
- cloud:
- consul:
- discovery:
- healthCheckPath: ${management.contextPath}/health
- healthCheckInterval: 15s
-
-
-
-
-
-
Consul does not yet support metadata on services. Spring Cloud’s ServiceInstance has a Map<String, String> metadata field. Spring Cloud Consul uses Consul tags to approximate metadata until Consul officially supports metadata. Tags with the form key=value will be split and used as a Map key and value respectively. Tags without the equal = sign, will be used as both the key and value.
-
-
-
application.yml
-
-
spring:
- cloud:
- consul:
- discovery:
- tags: foo=bar, baz
-
-
-
-
The above configuration will result in a map with foo→bar and baz→baz.
-
-
-
-
Making the Consul Instance ID Unique
-
-
By default a consul instance is registered with an ID that is equal to its Spring Application Context ID. By default, the Spring Application Context ID is ${spring.application.name}:comma,separated,profiles:${server.port}. For most cases, this will allow multiple instances of one service to run on one machine. If further uniqueness is required, Using Spring Cloud you can override this by providing a unique identifier in spring.cloud.consul.discovery.instanceId. For example:
-
-
-
application.yml
-
-
spring:
- cloud:
- consul:
- discovery:
- instanceId: ${spring.application.name}:${vcap.application.instance_id:${spring.application.instance_id:${random.value}}}
-
-
-
-
With this metadata, and multiple service instances deployed on localhost, the random value will kick in there to make the instance unique. In Cloudfoundry the vcap.application.instance_id will be populated automatically in a Spring Boot application, so the random value will not be needed.
-
-
-
-
-
Using the DiscoveryClient
-
-
Spring Cloud has support for Feign (a REST client builder) and also Spring RestTemplate using the logical service names instead of physical URLs.
-
-
-
You can also use the org.springframework.cloud.client.discovery.DiscoveryClient which provides a simple API for discovery clients that is not specific to Netflix, e.g.
-
-
-
-
@Autowired
-private DiscoveryClient discoveryClient;
-
-public String serviceUrl() {
- List<ServiceInstance> list = discoveryClient.getInstances("STORES");
- if (list != null && list.size() > 0 ) {
- return list.get(0).getUri();
- }
- return null;
-}
-
-
-
-
-
-
-
Distributed Configuration with Consul
-
-
-
Consul provides a Key/Value Store for storing configuration and other metadata. Spring Cloud Consul Config is an alternative to the Config Server and Client . Configuration is loaded into the Spring Environment during the special "bootstrap" phase. Configuration is stored in the /config folder by default. Multiple PropertySource instances are created based on the application’s name and the active profiles that mimicks the Spring Cloud Config order of resolving properties. For example, an application with the name "testApp" and with the "dev" profile will have the following property sources created:
-
-
-
-
config/testApp,dev/
-config/testApp/
-config/application,dev/
-config/application/
-
-
-
-
The most specific property source is at the top, with the least specific at the bottom. Properties is the config/application folder are applicable to all applications using consul for configuration. Properties in the config/testApp folder are only available to the instances of the service named "testApp".
-
-
-
Configuration is currently read on startup of the application. Sending a HTTP POST to /refresh will cause the configuration to be reloaded. Watching the key value store (which Consul supports) is not currently possible, but will be a future addition to this project.
-
-
-
How to activate
-
-
Including a dependency on org.springframework.cloud:spring-cloud-consul-config will enable auto-configuration that will setup Spring Cloud Consul Config.
-
-
-
-
Customizing
-
-
Consul Config may be customized using the following properties:
-
-
-
bootstrap.yml
-
-
spring:
- cloud:
- consul:
- config:
- enabled: true
- prefix: configuration
- defaultContext: apps
- profileSeparator: '::'
-
-
-
-
-
-enabled setting this value to "false" disables Consul Config
-
-
-prefix sets the base folder for configuration values
-
-
-defaultContext sets the folder name used by all applications
-
-
-profileSeparator sets the value of the separator used to separate the profile name in property sources with profiles
-
-
-
-
-
-
-
-
-
-
-
It may be more convenient to store a blob of properties in YAML or Properties format as opposed to individual key/value pairs. Set the spring.cloud.consul.config.format property to YAML or PROPERTIES. For example to use YAML:
-
-
-
bootstrap.yml
-
-
spring:
- cloud:
- consul:
- config:
- format: YAML
-
-
-
-
YAML must be set in the appropriate data key in consul. Using the defaults above the keys would look like:
-
-
-
-
config/testApp,dev/data
-config/testApp/data
-config/application,dev/data
-config/application/data
-
-
-
-
You could store a YAML document in any of the keys listed above.
-
-
-
You can change the data key using spring.cloud.consul.config.data-key.
-
-
-
-
-
git2consul with Config
-
-
-
git2consul is a Consul community project that loads files from a git repository to individual keys into Consul. By default the names of the keys are names of the files. YAML and Properties files are supported with file extensions of .yml and .properties respectively. Set the spring.cloud.consul.config.format property to FILES. For example:
-
-
-
bootstrap.yml
-
-
spring:
- cloud:
- consul:
- config:
- format: FILES
-
-
-
-
Given the following keys in /config, the development profile and an application name of foo:
-
-
-
-
.gitignore
-application.yml
-bar.properties
-foo-development.properties
-foo-production.yml
-foo.properties
-master.ref
-
-
-
-
the following property sources would be created:
-
-
-
-
config/foo-development.properties
-config/foo.properties
-config/application.yml
-
-
-
-
The value of each key needs to be a properly formatted YAML or Properties file.
-
-
-
-
-
Fail Fast
-
-
-
It may be convenient in certain circumstances (like local development or certain test scenarios) to not fail if consul isn’t available for configuration. Setting spring.cloud.consul.config.failFast=false in bootstrap.yml will cause the configuration module to log a warning rather than throw an exception. This will allow the application to continue startup normally.
-
-
-
-
-
Consul Retry
-
-
-
If you expect that the consul agent may occasionally be unavailable when
-your app starts, you can ask it to keep trying after a failure. You need to add
-spring-retry and spring-boot-starter-aop to your classpath. The default
-behaviour is to retry 6 times with an initial backoff interval of 1000ms and an
-exponential multiplier of 1.1 for subsequent backoffs. You can configure these
-properties (and others) using spring.cloud.consul.retry.* configuration properties.
-This works with both Spring Cloud Consul Config and Discovery registration.
-
-
-
-
-
-Tip
-
-
-To take full control of the retry add a @Bean of type
-RetryOperationsInterceptor with id "consulRetryInterceptor". Spring
-Retry has a RetryInterceptorBuilder that makes it easy to create one.
-
-
-
-
-
-
-
-
Spring Cloud Bus with Consul
-
-
-
Coming in a later release.
-
-
-
-
-
Circuit Breaker with Hystrix
-
-
-
Applications can use the Hystrix Circuit Breaker provided by the Spring Cloud Netflix project by including this starter in the projects pom.xml: spring-cloud-starter-hystrix. Hystrix doesn’t depend on the Netflix Discovery Client. The @EnableHystrix annotation should be placed on a configuration class (usually the main class). Then methods can be annotated with @HystrixCommand to be protected by a circuit breaker. See the documentation for more details.
-
-
-
-
-
Hystrix metrics aggregation with Turbine and Consul
-
-
-
Turbine (provided by the Spring Cloud Netflix project), aggregates multiple instances Hystrix metrics streams, so the dashboard can display an aggregate view. Turbine uses the DiscoveryClient interface to lookup relevant instances. To use Turbine with Spring Cloud Consul, configure the Turbine application in a manner similar to the following examples:
-
-
-
pom.xml
-
-
<dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-netflix-turbine</artifactId>
-</dependency>
-<dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-consul-discovery</artifactId>
-</dependency>
-
-
-
-
Notice that the Turbine dependency is not a starter. The turbine starter includes support for Netflix Eureka.
-
-
-
application.yml
-
-
spring.application.name: turbine
-applications: consulhystrixclient
-turbine:
- aggregator:
- clusterConfig: ${applications}
- appConfig: ${applications}
-
-
-
-
The clusterConfig and appConfig sections must match, so it’s useful to put the comma-separated list of service ID’s into a separate configuration property.
-
-
-
Turbine.java
-
-
@EnableTurbine
-@EnableDiscoveryClient
-@SpringBootApplication
-public class Turbine {
- public static void main(String[] args) {
- SpringApplication.run(DemoturbinecommonsApplication.class, args);
- }
-}
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/spring-cloud-consul-binder/target/apidocs/allclasses-frame.html b/spring-cloud-consul-binder/target/apidocs/allclasses-frame.html
deleted file mode 100644
index 2b9a2260..00000000
--- a/spring-cloud-consul-binder/target/apidocs/allclasses-frame.html
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-All Classes (Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-All Classes
-
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/allclasses-noframe.html b/spring-cloud-consul-binder/target/apidocs/allclasses-noframe.html
deleted file mode 100644
index a9aaf0e9..00000000
--- a/spring-cloud-consul-binder/target/apidocs/allclasses-noframe.html
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-All Classes (Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-All Classes
-
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/constant-values.html b/spring-cloud-consul-binder/target/apidocs/constant-values.html
deleted file mode 100644
index 2b82be09..00000000
--- a/spring-cloud-consul-binder/target/apidocs/constant-values.html
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
-
-
-Constant Field Values (Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/deprecated-list.html b/spring-cloud-consul-binder/target/apidocs/deprecated-list.html
deleted file mode 100644
index 57f61b7e..00000000
--- a/spring-cloud-consul-binder/target/apidocs/deprecated-list.html
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
-
-
-Deprecated List (Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/help-doc.html b/spring-cloud-consul-binder/target/apidocs/help-doc.html
deleted file mode 100644
index ae447af7..00000000
--- a/spring-cloud-consul-binder/target/apidocs/help-doc.html
+++ /dev/null
@@ -1,231 +0,0 @@
-
-
-
-
-
-
-API Help (Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-Overview
-The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.
-
-
-Package
-Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:
-
-Interfaces (italic)
-Classes
-Enums
-Exceptions
-Errors
-Annotation Types
-
-
-
-Class/Interface
-Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:
-
-Class inheritance diagram
-Direct Subclasses
-All Known Subinterfaces
-All Known Implementing Classes
-Class/interface declaration
-Class/interface description
-
-
-Nested Class Summary
-Field Summary
-Constructor Summary
-Method Summary
-
-
-Field Detail
-Constructor Detail
-Method Detail
-
-Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.
-
-
-Annotation Type
-Each annotation type has its own separate page with the following sections:
-
-Annotation Type declaration
-Annotation Type description
-Required Element Summary
-Optional Element Summary
-Element Detail
-
-
-
-Enum
-Each enum has its own separate page with the following sections:
-
-Enum declaration
-Enum description
-Enum Constant Summary
-Enum Constant Detail
-
-
-
-Use
-Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.
-
-
-Tree (Class Hierarchy)
-There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.
-
-When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
-When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
-
-
-
-Deprecated API
-The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.
-
-
-Index
-The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.
-
-
-Prev/Next
-These links take you to the next or previous class, interface, package, or related page.
-
-
-Frames/No Frames
-These links show and hide the HTML frames. All pages are available with or without frames.
-
-
-All Classes
-The All Classes link shows all classes and interfaces except non-static nested types.
-
-
-Serialized Form
-Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.
-
-
-Constant Field Values
-The Constant Field Values page lists the static final fields and their values.
-
-
-
This help file applies to API documentation generated using the standard doclet.
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/index-all.html b/spring-cloud-consul-binder/target/apidocs/index-all.html
deleted file mode 100644
index 8b3b510d..00000000
--- a/spring-cloud-consul-binder/target/apidocs/index-all.html
+++ /dev/null
@@ -1,272 +0,0 @@
-
-
-
-
-
-
-Index (Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-C D E F G H I O P R W
-
-
-
C
-
-consul - Variable in class org.springframework.cloud.consul.binder.EventService
-
-ConsulBinder - Class in org.springframework.cloud.consul.binder
-
-ConsulBinder(EventService) - Constructor for class org.springframework.cloud.consul.binder.ConsulBinder
-
-ConsulBinderConfiguration - Class in org.springframework.cloud.consul.binder.config
-
-Configures the Consul binder.
-
-ConsulBinderConfiguration() - Constructor for class org.springframework.cloud.consul.binder.config.ConsulBinderConfiguration
-
-ConsulBinderProperties - Class in org.springframework.cloud.consul.binder.config
-
-ConsulBinderProperties() - Constructor for class org.springframework.cloud.consul.binder.config.ConsulBinderProperties
-
-consulClientBinder(EventService) - Method in class org.springframework.cloud.consul.binder.config.ConsulBinderConfiguration
-
-ConsulInboundMessageProducer - Class in org.springframework.cloud.consul.binder
-
-Adapter that receives Messages from Consul Events, converts them into Spring
- Integration Messages, and sends the results to a Message Channel.
-
-ConsulInboundMessageProducer(EventService) - Constructor for class org.springframework.cloud.consul.binder.ConsulInboundMessageProducer
-
-ConsulSendingHandler - Class in org.springframework.cloud.consul.binder
-
-Adapter that converts and sends Messages as Consul events
-
-ConsulSendingHandler(ConsulClient, String) - Constructor for class org.springframework.cloud.consul.binder.ConsulSendingHandler
-
-
-
-
-
-
D
-
-doBindConsumer(String, String, MessageChannel, ConsumerProperties) - Method in class org.springframework.cloud.consul.binder.ConsulBinder
-
-doBindProducer(String, MessageChannel, ProducerProperties) - Method in class org.springframework.cloud.consul.binder.ConsulBinder
-
-doStart() - Method in class org.springframework.cloud.consul.binder.ConsulInboundMessageProducer
-
-doStop() - Method in class org.springframework.cloud.consul.binder.ConsulInboundMessageProducer
-
-
-
-
-
-
E
-
-eventService(ConsulClient) - Method in class org.springframework.cloud.consul.binder.config.ConsulBinderConfiguration
-
-EventService - Class in org.springframework.cloud.consul.binder
-
-EventService(ConsulBinderProperties, ConsulClient, ObjectMapper) - Constructor for class org.springframework.cloud.consul.binder.EventService
-
-
-
-
-
-
F
-
-filterEvents(List<Event>, Long) - Method in class org.springframework.cloud.consul.binder.EventService
-
-from https://github.com/hashicorp/consul/blob/master/watch/funcs.go#L169-L194
-
-fire(String, String) - Method in class org.springframework.cloud.consul.binder.EventService
-
-
-
-
-
-
G
-
-getConsulClient() - Method in class org.springframework.cloud.consul.binder.EventService
-
-getEvents() - Method in class org.springframework.cloud.consul.binder.ConsulInboundMessageProducer
-
-getEvents() - Method in class org.springframework.cloud.consul.binder.EventService
-
-getEvents(Long) - Method in class org.springframework.cloud.consul.binder.EventService
-
-getEventsResponse() - Method in class org.springframework.cloud.consul.binder.EventService
-
-getLastIndex() - Method in class org.springframework.cloud.consul.binder.EventService
-
-
-
-
-
-
H
-
-handleMessageInternal(Message<?>) - Method in class org.springframework.cloud.consul.binder.ConsulSendingHandler
-
-
-
-
-
-
I
-
-init() - Method in class org.springframework.cloud.consul.binder.EventService
-
-
-
-
-
-
O
-
-objectMapper - Variable in class org.springframework.cloud.consul.binder.config.ConsulBinderConfiguration
-
-objectMapper - Variable in class org.springframework.cloud.consul.binder.EventService
-
-org.springframework.cloud.consul.binder - package org.springframework.cloud.consul.binder
-
-org.springframework.cloud.consul.binder.config - package org.springframework.cloud.consul.binder.config
-
-
-
-
-
-
P
-
-properties - Variable in class org.springframework.cloud.consul.binder.EventService
-
-
-
-
-
-
R
-
-readEvents(Response<List<Event>>) - Method in class org.springframework.cloud.consul.binder.EventService
-
-
-
-
-
-
W
-
-watch() - Method in class org.springframework.cloud.consul.binder.EventService
-
-watch(Long) - Method in class org.springframework.cloud.consul.binder.EventService
-
-
-
C D E F G H I O P R W
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/index.html b/spring-cloud-consul-binder/target/apidocs/index.html
deleted file mode 100644
index 98e8673e..00000000
--- a/spring-cloud-consul-binder/target/apidocs/index.html
+++ /dev/null
@@ -1,75 +0,0 @@
-
-
-
-
-
-
-Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-Frame Alert
-This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to Non-frame version .
-
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/ConsulBinder.html b/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/ConsulBinder.html
deleted file mode 100644
index 2339cec4..00000000
--- a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/ConsulBinder.html
+++ /dev/null
@@ -1,354 +0,0 @@
-
-
-
-
-
-
-ConsulBinder (Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.stream.binder.AbstractBinder<org.springframework.messaging.MessageChannel,org.springframework.cloud.stream.binder.ConsumerProperties,org.springframework.cloud.stream.binder.ProducerProperties>
-
-
-org.springframework.cloud.consul.binder.ConsulBinder
-
-
-
-
-
-
-
-
-
-All Implemented Interfaces:
-org.springframework.beans.factory.Aware, org.springframework.beans.factory.InitializingBean, org.springframework.cloud.stream.binder.Binder<org.springframework.messaging.MessageChannel,org.springframework.cloud.stream.binder.ConsumerProperties,org.springframework.cloud.stream.binder.ProducerProperties>, org.springframework.context.ApplicationContextAware
-
-
-
-public class ConsulBinder
-extends org.springframework.cloud.stream.binder.AbstractBinder<org.springframework.messaging.MessageChannel,org.springframework.cloud.stream.binder.ConsumerProperties,org.springframework.cloud.stream.binder.ProducerProperties>
-
-Author:
-Spencer Gibb
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-Nested classes/interfaces inherited from class org.springframework.cloud.stream.binder.AbstractBinder
-org.springframework.cloud.stream.binder.AbstractBinder.JavaClassMimeTypeConversion
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-Fields inherited from class org.springframework.cloud.stream.binder.AbstractBinder
-logger
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-All Methods Instance Methods Concrete Methods
-
-Modifier and Type
-Method and Description
-
-
-protected org.springframework.cloud.stream.binder.Binding<org.springframework.messaging.MessageChannel>
-doBindConsumer (String name,
- String group,
- org.springframework.messaging.MessageChannel inputChannel,
- org.springframework.cloud.stream.binder.ConsumerProperties properties)
-
-
-protected org.springframework.cloud.stream.binder.Binding<org.springframework.messaging.MessageChannel>
-doBindProducer (String name,
- org.springframework.messaging.MessageChannel channel,
- org.springframework.cloud.stream.binder.ProducerProperties properties)
-
-
-
-
-
-
-Methods inherited from class org.springframework.cloud.stream.binder.AbstractBinder
-afterPropertiesSet, applyPrefix, bindConsumer, bindProducer, buildPartitionRoutingExpression, buildRetryTemplate, constructDLQName, getApplicationContext, getBeanFactory, groupedName, onInit, setApplicationContext, setCodec, setIntegrationEvaluationContext
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-doBindConsumer
-protected org.springframework.cloud.stream.binder.Binding<org.springframework.messaging.MessageChannel> doBindConsumer(String name,
- String group,
- org.springframework.messaging.MessageChannel inputChannel,
- org.springframework.cloud.stream.binder.ConsumerProperties properties)
-
-Specified by:
-doBindConsumer in class org.springframework.cloud.stream.binder.AbstractBinder<org.springframework.messaging.MessageChannel,org.springframework.cloud.stream.binder.ConsumerProperties,org.springframework.cloud.stream.binder.ProducerProperties>
-
-
-
-
-
-
-
-
-doBindProducer
-protected org.springframework.cloud.stream.binder.Binding<org.springframework.messaging.MessageChannel> doBindProducer(String name,
- org.springframework.messaging.MessageChannel channel,
- org.springframework.cloud.stream.binder.ProducerProperties properties)
-
-Specified by:
-doBindProducer in class org.springframework.cloud.stream.binder.AbstractBinder<org.springframework.messaging.MessageChannel,org.springframework.cloud.stream.binder.ConsumerProperties,org.springframework.cloud.stream.binder.ProducerProperties>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/ConsulInboundMessageProducer.html b/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/ConsulInboundMessageProducer.html
deleted file mode 100644
index 8b7b34ee..00000000
--- a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/ConsulInboundMessageProducer.html
+++ /dev/null
@@ -1,382 +0,0 @@
-
-
-
-
-
-
-ConsulInboundMessageProducer (Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.integration.context.IntegrationObjectSupport
-
-
-org.springframework.integration.endpoint.AbstractEndpoint
-
-
-org.springframework.integration.endpoint.MessageProducerSupport
-
-
-org.springframework.cloud.consul.binder.ConsulInboundMessageProducer
-
-
-
-
-
-
-
-
-
-
-
-
-
-All Implemented Interfaces:
-org.springframework.beans.factory.Aware, org.springframework.beans.factory.BeanFactoryAware, org.springframework.beans.factory.BeanNameAware, org.springframework.beans.factory.InitializingBean, org.springframework.beans.factory.SmartInitializingSingleton, org.springframework.context.ApplicationContextAware, org.springframework.context.Lifecycle, org.springframework.context.Phased, org.springframework.context.SmartLifecycle, org.springframework.integration.context.ExpressionCapable, org.springframework.integration.core.MessageProducer, org.springframework.integration.support.context.NamedComponent, org.springframework.integration.support.management.TrackableComponent
-
-
-
-public class ConsulInboundMessageProducer
-extends org.springframework.integration.endpoint.MessageProducerSupport
-Adapter that receives Messages from Consul Events, converts them into Spring
- Integration Messages, and sends the results to a Message Channel.
-
-Author:
-Spencer Gibb
-
-
-
-
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-Fields inherited from class org.springframework.integration.endpoint.AbstractEndpoint
-lifecycleCondition, lifecycleLock
-
-
-
-
-
-Fields inherited from class org.springframework.integration.context.IntegrationObjectSupport
-EXPRESSION_PARSER, logger
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class org.springframework.integration.endpoint.MessageProducerSupport
-afterSingletonsInstantiated, getErrorChannel, getMessagingTemplate, getOutputChannel, onInit, sendMessage, setErrorChannel, setErrorChannelName, setOutputChannel, setOutputChannelName, setSendTimeout, setShouldTrack
-
-
-
-
-
-Methods inherited from class org.springframework.integration.endpoint.AbstractEndpoint
-doStop, getPhase, isAutoStartup, isRunning, setAutoStartup, setPhase, setTaskScheduler, start, stop, stop
-
-
-
-
-
-Methods inherited from class org.springframework.integration.context.IntegrationObjectSupport
-afterPropertiesSet, extractTypeIfPossible, getApplicationContext, getApplicationContextId, getBeanFactory, getChannelResolver, getComponentName, getComponentType, getConversionService, getExpression, getIntegrationProperties, getIntegrationProperty, getMessageBuilderFactory, getTaskScheduler, setApplicationContext, setBeanFactory, setBeanName, setChannelResolver, setComponentName, setConversionService, setMessageBuilderFactory, setPrimaryExpression, toString
-
-
-
-
-
-
-Methods inherited from interface org.springframework.integration.support.context.NamedComponent
-getComponentName, getComponentType
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-doStart
-protected void doStart()
-
-Overrides:
-doStart in class org.springframework.integration.endpoint.MessageProducerSupport
-
-
-
-
-
-
-
-
-doStop
-protected void doStop()
-
-Overrides:
-doStop in class org.springframework.integration.endpoint.MessageProducerSupport
-
-
-
-
-
-
-
-
-getEvents
-public void getEvents()
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/ConsulSendingHandler.html b/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/ConsulSendingHandler.html
deleted file mode 100644
index 52c8fbc9..00000000
--- a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/ConsulSendingHandler.html
+++ /dev/null
@@ -1,344 +0,0 @@
-
-
-
-
-
-
-ConsulSendingHandler (Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.integration.context.IntegrationObjectSupport
-
-
-org.springframework.integration.handler.AbstractMessageHandler
-
-
-org.springframework.cloud.consul.binder.ConsulSendingHandler
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-Fields inherited from class org.springframework.integration.context.IntegrationObjectSupport
-EXPRESSION_PARSER, logger
-
-
-
-
-
-Fields inherited from interface org.springframework.core.Ordered
-HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-ConsulSendingHandler (com.ecwid.consul.v1.ConsulClient consul,
- String eventName)
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class org.springframework.integration.handler.AbstractMessageHandler
-configureMetrics, getActiveCount, getActiveCountLong, getComponentType, getDuration, getErrorCount, getErrorCountLong, getHandleCount, getHandleCountLong, getManagedName, getManagedType, getMaxDuration, getMeanDuration, getMinDuration, getOrder, getStandardDeviationDuration, handleMessage, isCountsEnabled, isLoggingEnabled, isStatsEnabled, onInit, reset, setCountsEnabled, setLoggingEnabled, setManagedName, setManagedType, setOrder, setShouldTrack, setStatsEnabled
-
-
-
-
-
-Methods inherited from class org.springframework.integration.context.IntegrationObjectSupport
-afterPropertiesSet, extractTypeIfPossible, getApplicationContext, getApplicationContextId, getBeanFactory, getChannelResolver, getComponentName, getConversionService, getExpression, getIntegrationProperties, getIntegrationProperty, getMessageBuilderFactory, getTaskScheduler, setApplicationContext, setBeanFactory, setBeanName, setChannelResolver, setComponentName, setConversionService, setMessageBuilderFactory, setPrimaryExpression, setTaskScheduler, toString
-
-
-
-
-
-
-Methods inherited from interface org.springframework.integration.support.context.NamedComponent
-getComponentName
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/EventService.html b/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/EventService.html
deleted file mode 100644
index 289b412d..00000000
--- a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/EventService.html
+++ /dev/null
@@ -1,481 +0,0 @@
-
-
-
-
-
-
-EventService (Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.binder.EventService
-
-
-
-
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-EventService (ConsulBinderProperties properties,
- com.ecwid.consul.v1.ConsulClient consul,
- com.fasterxml.jackson.databind.ObjectMapper objectMapper)
-
-
-
-
-
-
-
-
-
-Method Summary
-
-All Methods Instance Methods Concrete Methods
-
-Modifier and Type
-Method and Description
-
-
-protected List <com.ecwid.consul.v1.event.model.Event>
-filterEvents (List <com.ecwid.consul.v1.event.model.Event> toFilter,
- Long lastIndex)
-from https://github.com/hashicorp/consul/blob/master/watch/funcs.go#L169-L194
-
-
-
-com.ecwid.consul.v1.event.model.Event
-fire (String name,
- String payload)
-
-
-com.ecwid.consul.v1.ConsulClient
-getConsulClient ()
-
-
-List <com.ecwid.consul.v1.event.model.Event>
-getEvents ()
-
-
-List <com.ecwid.consul.v1.event.model.Event>
-getEvents (Long lastIndex)
-
-
-com.ecwid.consul.v1.Response<List <com.ecwid.consul.v1.event.model.Event>>
-getEventsResponse ()
-
-
-Long
-getLastIndex ()
-
-
-void
-init ()
-
-
-protected List <com.ecwid.consul.v1.event.model.Event>
-readEvents (com.ecwid.consul.v1.Response<List <com.ecwid.consul.v1.event.model.Event>> response)
-
-
-List <com.ecwid.consul.v1.event.model.Event>
-watch ()
-
-
-List <com.ecwid.consul.v1.event.model.Event>
-watch (Long lastIndex)
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-filterEvents
-protected List <com.ecwid.consul.v1.event.model.Event> filterEvents(List <com.ecwid.consul.v1.event.model.Event> toFilter,
- Long lastIndex)
-from https://github.com/hashicorp/consul/blob/master/watch/funcs.go#L169-L194
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/class-use/ConsulBinder.html b/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/class-use/ConsulBinder.html
deleted file mode 100644
index e4d3f6f6..00000000
--- a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/class-use/ConsulBinder.html
+++ /dev/null
@@ -1,166 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.binder.ConsulBinder (Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/class-use/ConsulInboundMessageProducer.html b/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/class-use/ConsulInboundMessageProducer.html
deleted file mode 100644
index 015f32bd..00000000
--- a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/class-use/ConsulInboundMessageProducer.html
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.binder.ConsulInboundMessageProducer (Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of org.springframework.cloud.consul.binder.ConsulInboundMessageProducer
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/class-use/ConsulSendingHandler.html b/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/class-use/ConsulSendingHandler.html
deleted file mode 100644
index 11b80117..00000000
--- a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/class-use/ConsulSendingHandler.html
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.binder.ConsulSendingHandler (Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of org.springframework.cloud.consul.binder.ConsulSendingHandler
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/class-use/EventService.html b/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/class-use/EventService.html
deleted file mode 100644
index 6f5c318c..00000000
--- a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/class-use/EventService.html
+++ /dev/null
@@ -1,202 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.binder.EventService (Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/config/ConsulBinderConfiguration.html b/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/config/ConsulBinderConfiguration.html
deleted file mode 100644
index 9ee08cea..00000000
--- a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/config/ConsulBinderConfiguration.html
+++ /dev/null
@@ -1,336 +0,0 @@
-
-
-
-
-
-
-ConsulBinderConfiguration (Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.binder.config.ConsulBinderConfiguration
-
-
-
-
-
-
-
-
-@Configuration
- @ConditionalOnMissingBean(value=org.springframework.cloud.stream.binder.Binder.class)
- @Import(value=org.springframework.boot.autoconfigure.PropertyPlaceholderAutoConfiguration.class)
- @EnableConfigurationProperties(value=ConsulBinderProperties.class )
-public class ConsulBinderConfiguration
-extends Object
-Configures the Consul binder.
-
-Author:
-Spencer Gibb
-
-
-
-
-
-
-
-
-
-
-
-
-Field Summary
-
-Fields
-
-Modifier and Type
-Field and Description
-
-
-protected com.fasterxml.jackson.databind.ObjectMapper
-objectMapper
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Field Detail
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/config/ConsulBinderProperties.html b/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/config/ConsulBinderProperties.html
deleted file mode 100644
index b8eb0ffd..00000000
--- a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/config/ConsulBinderProperties.html
+++ /dev/null
@@ -1,244 +0,0 @@
-
-
-
-
-
-
-ConsulBinderProperties (Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.binder.config.ConsulBinderProperties
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/config/class-use/ConsulBinderConfiguration.html b/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/config/class-use/ConsulBinderConfiguration.html
deleted file mode 100644
index bd16aa9a..00000000
--- a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/config/class-use/ConsulBinderConfiguration.html
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.binder.config.ConsulBinderConfiguration (Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of org.springframework.cloud.consul.binder.config.ConsulBinderConfiguration
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/config/class-use/ConsulBinderProperties.html b/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/config/class-use/ConsulBinderProperties.html
deleted file mode 100644
index a75def81..00000000
--- a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/config/class-use/ConsulBinderProperties.html
+++ /dev/null
@@ -1,179 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.binder.config.ConsulBinderProperties (Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/config/package-frame.html b/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/config/package-frame.html
deleted file mode 100644
index 848bc443..00000000
--- a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/config/package-frame.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-org.springframework.cloud.consul.binder.config (Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/config/package-summary.html b/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/config/package-summary.html
deleted file mode 100644
index 3ccd49c3..00000000
--- a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/config/package-summary.html
+++ /dev/null
@@ -1,150 +0,0 @@
-
-
-
-
-
-
-org.springframework.cloud.consul.binder.config (Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/config/package-tree.html b/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/config/package-tree.html
deleted file mode 100644
index 61e2ac15..00000000
--- a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/config/package-tree.html
+++ /dev/null
@@ -1,140 +0,0 @@
-
-
-
-
-
-
-org.springframework.cloud.consul.binder.config Class Hierarchy (Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/config/package-use.html b/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/config/package-use.html
deleted file mode 100644
index 2b0ced25..00000000
--- a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/config/package-use.html
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-
-Uses of Package org.springframework.cloud.consul.binder.config (Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/package-frame.html b/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/package-frame.html
deleted file mode 100644
index 3515fc82..00000000
--- a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/package-frame.html
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
-org.springframework.cloud.consul.binder (Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/package-summary.html b/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/package-summary.html
deleted file mode 100644
index 4f06ffcf..00000000
--- a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/package-summary.html
+++ /dev/null
@@ -1,161 +0,0 @@
-
-
-
-
-
-
-org.springframework.cloud.consul.binder (Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/package-tree.html b/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/package-tree.html
deleted file mode 100644
index c9f80fd1..00000000
--- a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/package-tree.html
+++ /dev/null
@@ -1,162 +0,0 @@
-
-
-
-
-
-
-org.springframework.cloud.consul.binder Class Hierarchy (Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
Class Hierarchy
-
-java.lang.Object
-
-org.springframework.cloud.stream.binder.AbstractBinder<T,C,P> (implements org.springframework.context.ApplicationContextAware, org.springframework.cloud.stream.binder.Binder<T,C,P>, org.springframework.beans.factory.InitializingBean)
-
-
-org.springframework.cloud.consul.binder.EventService
-org.springframework.integration.context.IntegrationObjectSupport (implements org.springframework.context.ApplicationContextAware, org.springframework.beans.factory.BeanFactoryAware, org.springframework.beans.factory.BeanNameAware, org.springframework.integration.context.ExpressionCapable, org.springframework.beans.factory.InitializingBean, org.springframework.integration.support.context.NamedComponent)
-
-org.springframework.integration.endpoint.AbstractEndpoint (implements org.springframework.context.SmartLifecycle)
-
-org.springframework.integration.endpoint.MessageProducerSupport (implements org.springframework.integration.core.MessageProducer, org.springframework.beans.factory.SmartInitializingSingleton, org.springframework.integration.support.management.TrackableComponent)
-
-
-
-
-org.springframework.integration.handler.AbstractMessageHandler (implements org.springframework.integration.support.management.ConfigurableMetricsAware<M>, org.springframework.messaging.MessageHandler, org.springframework.integration.support.management.MessageHandlerMetrics, org.springframework.integration.context.Orderable, org.springframework.integration.support.management.TrackableComponent)
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/package-use.html b/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/package-use.html
deleted file mode 100644
index 2c153018..00000000
--- a/spring-cloud-consul-binder/target/apidocs/org/springframework/cloud/consul/binder/package-use.html
+++ /dev/null
@@ -1,181 +0,0 @@
-
-
-
-
-
-
-Uses of Package org.springframework.cloud.consul.binder (Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/overview-frame.html b/spring-cloud-consul-binder/target/apidocs/overview-frame.html
deleted file mode 100644
index f141bc2d..00000000
--- a/spring-cloud-consul-binder/target/apidocs/overview-frame.html
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-Overview List (Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/overview-summary.html b/spring-cloud-consul-binder/target/apidocs/overview-summary.html
deleted file mode 100644
index 0b415087..00000000
--- a/spring-cloud-consul-binder/target/apidocs/overview-summary.html
+++ /dev/null
@@ -1,144 +0,0 @@
-
-
-
-
-
-
-Overview (Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/overview-tree.html b/spring-cloud-consul-binder/target/apidocs/overview-tree.html
deleted file mode 100644
index f90509d5..00000000
--- a/spring-cloud-consul-binder/target/apidocs/overview-tree.html
+++ /dev/null
@@ -1,165 +0,0 @@
-
-
-
-
-
-
-Class Hierarchy (Spring Cloud Consul Binder 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
Class Hierarchy
-
-java.lang.Object
-
-org.springframework.cloud.stream.binder.AbstractBinder<T,C,P> (implements org.springframework.context.ApplicationContextAware, org.springframework.cloud.stream.binder.Binder<T,C,P>, org.springframework.beans.factory.InitializingBean)
-
-
-org.springframework.cloud.consul.binder.config.ConsulBinderConfiguration
-org.springframework.cloud.consul.binder.config.ConsulBinderProperties
-org.springframework.cloud.consul.binder.EventService
-org.springframework.integration.context.IntegrationObjectSupport (implements org.springframework.context.ApplicationContextAware, org.springframework.beans.factory.BeanFactoryAware, org.springframework.beans.factory.BeanNameAware, org.springframework.integration.context.ExpressionCapable, org.springframework.beans.factory.InitializingBean, org.springframework.integration.support.context.NamedComponent)
-
-org.springframework.integration.endpoint.AbstractEndpoint (implements org.springframework.context.SmartLifecycle)
-
-org.springframework.integration.endpoint.MessageProducerSupport (implements org.springframework.integration.core.MessageProducer, org.springframework.beans.factory.SmartInitializingSingleton, org.springframework.integration.support.management.TrackableComponent)
-
-
-
-
-org.springframework.integration.handler.AbstractMessageHandler (implements org.springframework.integration.support.management.ConfigurableMetricsAware<M>, org.springframework.messaging.MessageHandler, org.springframework.integration.support.management.MessageHandlerMetrics, org.springframework.integration.context.Orderable, org.springframework.integration.support.management.TrackableComponent)
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-binder/target/apidocs/package-list b/spring-cloud-consul-binder/target/apidocs/package-list
deleted file mode 100644
index 7035f6e5..00000000
--- a/spring-cloud-consul-binder/target/apidocs/package-list
+++ /dev/null
@@ -1,2 +0,0 @@
-org.springframework.cloud.consul.binder
-org.springframework.cloud.consul.binder.config
diff --git a/spring-cloud-consul-binder/target/apidocs/script.js b/spring-cloud-consul-binder/target/apidocs/script.js
deleted file mode 100644
index b3463569..00000000
--- a/spring-cloud-consul-binder/target/apidocs/script.js
+++ /dev/null
@@ -1,30 +0,0 @@
-function show(type)
-{
- count = 0;
- for (var key in methods) {
- var row = document.getElementById(key);
- if ((methods[key] & type) != 0) {
- row.style.display = '';
- row.className = (count++ % 2) ? rowColor : altColor;
- }
- else
- row.style.display = 'none';
- }
- updateTabs(type);
-}
-
-function updateTabs(type)
-{
- for (var value in tabs) {
- var sNode = document.getElementById(tabs[value][0]);
- var spanNode = sNode.firstChild;
- if (value == type) {
- sNode.className = activeTableTab;
- spanNode.innerHTML = tabs[value][1];
- }
- else {
- sNode.className = tableTab;
- spanNode.innerHTML = "" + tabs[value][1] + " ";
- }
- }
-}
diff --git a/spring-cloud-consul-binder/target/apidocs/stylesheet.css b/spring-cloud-consul-binder/target/apidocs/stylesheet.css
deleted file mode 100644
index 98055b22..00000000
--- a/spring-cloud-consul-binder/target/apidocs/stylesheet.css
+++ /dev/null
@@ -1,574 +0,0 @@
-/* Javadoc style sheet */
-/*
-Overall document style
-*/
-
-@import url('resources/fonts/dejavu.css');
-
-body {
- background-color:#ffffff;
- color:#353833;
- font-family:'DejaVu Sans', Arial, Helvetica, sans-serif;
- font-size:14px;
- margin:0;
-}
-a:link, a:visited {
- text-decoration:none;
- color:#4A6782;
-}
-a:hover, a:focus {
- text-decoration:none;
- color:#bb7a2a;
-}
-a:active {
- text-decoration:none;
- color:#4A6782;
-}
-a[name] {
- color:#353833;
-}
-a[name]:hover {
- text-decoration:none;
- color:#353833;
-}
-pre {
- font-family:'DejaVu Sans Mono', monospace;
- font-size:14px;
-}
-h1 {
- font-size:20px;
-}
-h2 {
- font-size:18px;
-}
-h3 {
- font-size:16px;
- font-style:italic;
-}
-h4 {
- font-size:13px;
-}
-h5 {
- font-size:12px;
-}
-h6 {
- font-size:11px;
-}
-ul {
- list-style-type:disc;
-}
-code, tt {
- font-family:'DejaVu Sans Mono', monospace;
- font-size:14px;
- padding-top:4px;
- margin-top:8px;
- line-height:1.4em;
-}
-dt code {
- font-family:'DejaVu Sans Mono', monospace;
- font-size:14px;
- padding-top:4px;
-}
-table tr td dt code {
- font-family:'DejaVu Sans Mono', monospace;
- font-size:14px;
- vertical-align:top;
- padding-top:4px;
-}
-sup {
- font-size:8px;
-}
-/*
-Document title and Copyright styles
-*/
-.clear {
- clear:both;
- height:0px;
- overflow:hidden;
-}
-.aboutLanguage {
- float:right;
- padding:0px 21px;
- font-size:11px;
- z-index:200;
- margin-top:-9px;
-}
-.legalCopy {
- margin-left:.5em;
-}
-.bar a, .bar a:link, .bar a:visited, .bar a:active {
- color:#FFFFFF;
- text-decoration:none;
-}
-.bar a:hover, .bar a:focus {
- color:#bb7a2a;
-}
-.tab {
- background-color:#0066FF;
- color:#ffffff;
- padding:8px;
- width:5em;
- font-weight:bold;
-}
-/*
-Navigation bar styles
-*/
-.bar {
- background-color:#4D7A97;
- color:#FFFFFF;
- padding:.8em .5em .4em .8em;
- height:auto;/*height:1.8em;*/
- font-size:11px;
- margin:0;
-}
-.topNav {
- background-color:#4D7A97;
- color:#FFFFFF;
- float:left;
- padding:0;
- width:100%;
- clear:right;
- height:2.8em;
- padding-top:10px;
- overflow:hidden;
- font-size:12px;
-}
-.bottomNav {
- margin-top:10px;
- background-color:#4D7A97;
- color:#FFFFFF;
- float:left;
- padding:0;
- width:100%;
- clear:right;
- height:2.8em;
- padding-top:10px;
- overflow:hidden;
- font-size:12px;
-}
-.subNav {
- background-color:#dee3e9;
- float:left;
- width:100%;
- overflow:hidden;
- font-size:12px;
-}
-.subNav div {
- clear:left;
- float:left;
- padding:0 0 5px 6px;
- text-transform:uppercase;
-}
-ul.navList, ul.subNavList {
- float:left;
- margin:0 25px 0 0;
- padding:0;
-}
-ul.navList li{
- list-style:none;
- float:left;
- padding: 5px 6px;
- text-transform:uppercase;
-}
-ul.subNavList li{
- list-style:none;
- float:left;
-}
-.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited {
- color:#FFFFFF;
- text-decoration:none;
- text-transform:uppercase;
-}
-.topNav a:hover, .bottomNav a:hover {
- text-decoration:none;
- color:#bb7a2a;
- text-transform:uppercase;
-}
-.navBarCell1Rev {
- background-color:#F8981D;
- color:#253441;
- margin: auto 5px;
-}
-.skipNav {
- position:absolute;
- top:auto;
- left:-9999px;
- overflow:hidden;
-}
-/*
-Page header and footer styles
-*/
-.header, .footer {
- clear:both;
- margin:0 20px;
- padding:5px 0 0 0;
-}
-.indexHeader {
- margin:10px;
- position:relative;
-}
-.indexHeader span{
- margin-right:15px;
-}
-.indexHeader h1 {
- font-size:13px;
-}
-.title {
- color:#2c4557;
- margin:10px 0;
-}
-.subTitle {
- margin:5px 0 0 0;
-}
-.header ul {
- margin:0 0 15px 0;
- padding:0;
-}
-.footer ul {
- margin:20px 0 5px 0;
-}
-.header ul li, .footer ul li {
- list-style:none;
- font-size:13px;
-}
-/*
-Heading styles
-*/
-div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 {
- background-color:#dee3e9;
- border:1px solid #d0d9e0;
- margin:0 0 6px -8px;
- padding:7px 5px;
-}
-ul.blockList ul.blockList ul.blockList li.blockList h3 {
- background-color:#dee3e9;
- border:1px solid #d0d9e0;
- margin:0 0 6px -8px;
- padding:7px 5px;
-}
-ul.blockList ul.blockList li.blockList h3 {
- padding:0;
- margin:15px 0;
-}
-ul.blockList li.blockList h2 {
- padding:0px 0 20px 0;
-}
-/*
-Page layout container styles
-*/
-.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer {
- clear:both;
- padding:10px 20px;
- position:relative;
-}
-.indexContainer {
- margin:10px;
- position:relative;
- font-size:12px;
-}
-.indexContainer h2 {
- font-size:13px;
- padding:0 0 3px 0;
-}
-.indexContainer ul {
- margin:0;
- padding:0;
-}
-.indexContainer ul li {
- list-style:none;
- padding-top:2px;
-}
-.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt {
- font-size:12px;
- font-weight:bold;
- margin:10px 0 0 0;
- color:#4E4E4E;
-}
-.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd {
- margin:5px 0 10px 0px;
- font-size:14px;
- font-family:'DejaVu Sans Mono',monospace;
-}
-.serializedFormContainer dl.nameValue dt {
- margin-left:1px;
- font-size:1.1em;
- display:inline;
- font-weight:bold;
-}
-.serializedFormContainer dl.nameValue dd {
- margin:0 0 0 1px;
- font-size:1.1em;
- display:inline;
-}
-/*
-List styles
-*/
-ul.horizontal li {
- display:inline;
- font-size:0.9em;
-}
-ul.inheritance {
- margin:0;
- padding:0;
-}
-ul.inheritance li {
- display:inline;
- list-style:none;
-}
-ul.inheritance li ul.inheritance {
- margin-left:15px;
- padding-left:15px;
- padding-top:1px;
-}
-ul.blockList, ul.blockListLast {
- margin:10px 0 10px 0;
- padding:0;
-}
-ul.blockList li.blockList, ul.blockListLast li.blockList {
- list-style:none;
- margin-bottom:15px;
- line-height:1.4;
-}
-ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList {
- padding:0px 20px 5px 10px;
- border:1px solid #ededed;
- background-color:#f8f8f8;
-}
-ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList {
- padding:0 0 5px 8px;
- background-color:#ffffff;
- border:none;
-}
-ul.blockList ul.blockList ul.blockList ul.blockList li.blockList {
- margin-left:0;
- padding-left:0;
- padding-bottom:15px;
- border:none;
-}
-ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast {
- list-style:none;
- border-bottom:none;
- padding-bottom:0;
-}
-table tr td dl, table tr td dl dt, table tr td dl dd {
- margin-top:0;
- margin-bottom:1px;
-}
-/*
-Table styles
-*/
-.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary {
- width:100%;
- border-left:1px solid #EEE;
- border-right:1px solid #EEE;
- border-bottom:1px solid #EEE;
-}
-.overviewSummary, .memberSummary {
- padding:0px;
-}
-.overviewSummary caption, .memberSummary caption, .typeSummary caption,
-.useSummary caption, .constantsSummary caption, .deprecatedSummary caption {
- position:relative;
- text-align:left;
- background-repeat:no-repeat;
- color:#253441;
- font-weight:bold;
- clear:none;
- overflow:hidden;
- padding:0px;
- padding-top:10px;
- padding-left:1px;
- margin:0px;
- white-space:pre;
-}
-.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link,
-.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link,
-.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover,
-.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover,
-.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active,
-.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active,
-.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited,
-.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited {
- color:#FFFFFF;
-}
-.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span,
-.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span {
- white-space:nowrap;
- padding-top:5px;
- padding-left:12px;
- padding-right:12px;
- padding-bottom:7px;
- display:inline-block;
- float:left;
- background-color:#F8981D;
- border: none;
- height:16px;
-}
-.memberSummary caption span.activeTableTab span {
- white-space:nowrap;
- padding-top:5px;
- padding-left:12px;
- padding-right:12px;
- margin-right:3px;
- display:inline-block;
- float:left;
- background-color:#F8981D;
- height:16px;
-}
-.memberSummary caption span.tableTab span {
- white-space:nowrap;
- padding-top:5px;
- padding-left:12px;
- padding-right:12px;
- margin-right:3px;
- display:inline-block;
- float:left;
- background-color:#4D7A97;
- height:16px;
-}
-.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab {
- padding-top:0px;
- padding-left:0px;
- padding-right:0px;
- background-image:none;
- float:none;
- display:inline;
-}
-.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd,
-.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd {
- display:none;
- width:5px;
- position:relative;
- float:left;
- background-color:#F8981D;
-}
-.memberSummary .activeTableTab .tabEnd {
- display:none;
- width:5px;
- margin-right:3px;
- position:relative;
- float:left;
- background-color:#F8981D;
-}
-.memberSummary .tableTab .tabEnd {
- display:none;
- width:5px;
- margin-right:3px;
- position:relative;
- background-color:#4D7A97;
- float:left;
-
-}
-.overviewSummary td, .memberSummary td, .typeSummary td,
-.useSummary td, .constantsSummary td, .deprecatedSummary td {
- text-align:left;
- padding:0px 0px 12px 10px;
-}
-th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th,
-td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{
- vertical-align:top;
- padding-right:0px;
- padding-top:8px;
- padding-bottom:3px;
-}
-th.colFirst, th.colLast, th.colOne, .constantsSummary th {
- background:#dee3e9;
- text-align:left;
- padding:8px 3px 3px 7px;
-}
-td.colFirst, th.colFirst {
- white-space:nowrap;
- font-size:13px;
-}
-td.colLast, th.colLast {
- font-size:13px;
-}
-td.colOne, th.colOne {
- font-size:13px;
-}
-.overviewSummary td.colFirst, .overviewSummary th.colFirst,
-.useSummary td.colFirst, .useSummary th.colFirst,
-.overviewSummary td.colOne, .overviewSummary th.colOne,
-.memberSummary td.colFirst, .memberSummary th.colFirst,
-.memberSummary td.colOne, .memberSummary th.colOne,
-.typeSummary td.colFirst{
- width:25%;
- vertical-align:top;
-}
-td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover {
- font-weight:bold;
-}
-.tableSubHeadingColor {
- background-color:#EEEEFF;
-}
-.altColor {
- background-color:#FFFFFF;
-}
-.rowColor {
- background-color:#EEEEEF;
-}
-/*
-Content styles
-*/
-.description pre {
- margin-top:0;
-}
-.deprecatedContent {
- margin:0;
- padding:10px 0;
-}
-.docSummary {
- padding:0;
-}
-
-ul.blockList ul.blockList ul.blockList li.blockList h3 {
- font-style:normal;
-}
-
-div.block {
- font-size:14px;
- font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
-}
-
-td.colLast div {
- padding-top:0px;
-}
-
-
-td.colLast a {
- padding-bottom:3px;
-}
-/*
-Formatting effect styles
-*/
-.sourceLineNo {
- color:green;
- padding:0 30px 0 0;
-}
-h1.hidden {
- visibility:hidden;
- overflow:hidden;
- font-size:10px;
-}
-.block {
- display:block;
- margin:3px 10px 2px 0px;
- color:#474747;
-}
-.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink,
-.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel,
-.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink {
- font-weight:bold;
-}
-.deprecationComment, .emphasizedPhrase, .interfaceName {
- font-style:italic;
-}
-
-div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase,
-div.block div.block span.interfaceName {
- font-style:normal;
-}
-
-div.contentContainer ul.blockList li.blockList h2{
- padding-bottom:0px;
-}
diff --git a/spring-cloud-consul-binder/target/classes/META-INF/spring-cloud-stream/consul-binder.properties b/spring-cloud-consul-binder/target/classes/META-INF/spring-cloud-stream/consul-binder.properties
deleted file mode 100644
index db28478f..00000000
--- a/spring-cloud-consul-binder/target/classes/META-INF/spring-cloud-stream/consul-binder.properties
+++ /dev/null
@@ -1,18 +0,0 @@
-#
-# Copyright 2013-2016 the original author or authors.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-spring.cloud.stream.binder.consul.default.host=localhost
-spring.cloud.stream.binder.consul.default.port=8500
diff --git a/spring-cloud-consul-binder/target/classes/META-INF/spring-configuration-metadata.json b/spring-cloud-consul-binder/target/classes/META-INF/spring-configuration-metadata.json
deleted file mode 100644
index ef9ceac8..00000000
--- a/spring-cloud-consul-binder/target/classes/META-INF/spring-configuration-metadata.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "groups": [{
- "name": "spring.cloud.stream.consul.binder",
- "type": "org.springframework.cloud.consul.binder.config.ConsulBinderProperties",
- "sourceType": "org.springframework.cloud.consul.binder.config.ConsulBinderProperties"
- }],
- "properties": [{
- "name": "spring.cloud.stream.consul.binder.event-timeout",
- "type": "java.lang.Integer",
- "sourceType": "org.springframework.cloud.consul.binder.config.ConsulBinderProperties",
- "defaultValue": 5
- }],
- "hints": []
-}
\ No newline at end of file
diff --git a/spring-cloud-consul-binder/target/classes/META-INF/spring.binders b/spring-cloud-consul-binder/target/classes/META-INF/spring.binders
deleted file mode 100644
index c3f435cd..00000000
--- a/spring-cloud-consul-binder/target/classes/META-INF/spring.binders
+++ /dev/null
@@ -1,2 +0,0 @@
-consul:\
-org.springframework.cloud.consul.binder.config.ConsulBinderConfiguration
diff --git a/spring-cloud-consul-binder/target/classes/org/springframework/cloud/consul/binder/ConsulBinder.class b/spring-cloud-consul-binder/target/classes/org/springframework/cloud/consul/binder/ConsulBinder.class
deleted file mode 100644
index d64c81c8..00000000
Binary files a/spring-cloud-consul-binder/target/classes/org/springframework/cloud/consul/binder/ConsulBinder.class and /dev/null differ
diff --git a/spring-cloud-consul-binder/target/classes/org/springframework/cloud/consul/binder/ConsulInboundMessageProducer$1.class b/spring-cloud-consul-binder/target/classes/org/springframework/cloud/consul/binder/ConsulInboundMessageProducer$1.class
deleted file mode 100644
index 08112e8f..00000000
Binary files a/spring-cloud-consul-binder/target/classes/org/springframework/cloud/consul/binder/ConsulInboundMessageProducer$1.class and /dev/null differ
diff --git a/spring-cloud-consul-binder/target/classes/org/springframework/cloud/consul/binder/ConsulInboundMessageProducer.class b/spring-cloud-consul-binder/target/classes/org/springframework/cloud/consul/binder/ConsulInboundMessageProducer.class
deleted file mode 100644
index cec8cc76..00000000
Binary files a/spring-cloud-consul-binder/target/classes/org/springframework/cloud/consul/binder/ConsulInboundMessageProducer.class and /dev/null differ
diff --git a/spring-cloud-consul-binder/target/classes/org/springframework/cloud/consul/binder/ConsulSendingHandler.class b/spring-cloud-consul-binder/target/classes/org/springframework/cloud/consul/binder/ConsulSendingHandler.class
deleted file mode 100644
index 7c7235dc..00000000
Binary files a/spring-cloud-consul-binder/target/classes/org/springframework/cloud/consul/binder/ConsulSendingHandler.class and /dev/null differ
diff --git a/spring-cloud-consul-binder/target/classes/org/springframework/cloud/consul/binder/EventService.class b/spring-cloud-consul-binder/target/classes/org/springframework/cloud/consul/binder/EventService.class
deleted file mode 100644
index 21e031ef..00000000
Binary files a/spring-cloud-consul-binder/target/classes/org/springframework/cloud/consul/binder/EventService.class and /dev/null differ
diff --git a/spring-cloud-consul-binder/target/classes/org/springframework/cloud/consul/binder/config/ConsulBinderConfiguration.class b/spring-cloud-consul-binder/target/classes/org/springframework/cloud/consul/binder/config/ConsulBinderConfiguration.class
deleted file mode 100644
index 0a890e82..00000000
Binary files a/spring-cloud-consul-binder/target/classes/org/springframework/cloud/consul/binder/config/ConsulBinderConfiguration.class and /dev/null differ
diff --git a/spring-cloud-consul-binder/target/classes/org/springframework/cloud/consul/binder/config/ConsulBinderProperties.class b/spring-cloud-consul-binder/target/classes/org/springframework/cloud/consul/binder/config/ConsulBinderProperties.class
deleted file mode 100644
index 5863036a..00000000
Binary files a/spring-cloud-consul-binder/target/classes/org/springframework/cloud/consul/binder/config/ConsulBinderProperties.class and /dev/null differ
diff --git a/spring-cloud-consul-binder/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml b/spring-cloud-consul-binder/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml
deleted file mode 100644
index 8b89c977..00000000
--- a/spring-cloud-consul-binder/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
- src/main/javadoc
-
diff --git a/spring-cloud-consul-binder/target/javadoc-bundle-options/package-list b/spring-cloud-consul-binder/target/javadoc-bundle-options/package-list
deleted file mode 100644
index b52fe94b..00000000
--- a/spring-cloud-consul-binder/target/javadoc-bundle-options/package-list
+++ /dev/null
@@ -1,209 +0,0 @@
-java.applet
-java.awt
-java.awt.color
-java.awt.datatransfer
-java.awt.dnd
-java.awt.event
-java.awt.font
-java.awt.geom
-java.awt.im
-java.awt.im.spi
-java.awt.image
-java.awt.image.renderable
-java.awt.print
-java.beans
-java.beans.beancontext
-java.io
-java.lang
-java.lang.annotation
-java.lang.instrument
-java.lang.invoke
-java.lang.management
-java.lang.ref
-java.lang.reflect
-java.math
-java.net
-java.nio
-java.nio.channels
-java.nio.channels.spi
-java.nio.charset
-java.nio.charset.spi
-java.nio.file
-java.nio.file.attribute
-java.nio.file.spi
-java.rmi
-java.rmi.activation
-java.rmi.dgc
-java.rmi.registry
-java.rmi.server
-java.security
-java.security.acl
-java.security.cert
-java.security.interfaces
-java.security.spec
-java.sql
-java.text
-java.text.spi
-java.util
-java.util.concurrent
-java.util.concurrent.atomic
-java.util.concurrent.locks
-java.util.jar
-java.util.logging
-java.util.prefs
-java.util.regex
-java.util.spi
-java.util.zip
-javax.accessibility
-javax.activation
-javax.activity
-javax.annotation
-javax.annotation.processing
-javax.crypto
-javax.crypto.interfaces
-javax.crypto.spec
-javax.imageio
-javax.imageio.event
-javax.imageio.metadata
-javax.imageio.plugins.bmp
-javax.imageio.plugins.jpeg
-javax.imageio.spi
-javax.imageio.stream
-javax.jws
-javax.jws.soap
-javax.lang.model
-javax.lang.model.element
-javax.lang.model.type
-javax.lang.model.util
-javax.management
-javax.management.loading
-javax.management.modelmbean
-javax.management.monitor
-javax.management.openmbean
-javax.management.relation
-javax.management.remote
-javax.management.remote.rmi
-javax.management.timer
-javax.naming
-javax.naming.directory
-javax.naming.event
-javax.naming.ldap
-javax.naming.spi
-javax.net
-javax.net.ssl
-javax.print
-javax.print.attribute
-javax.print.attribute.standard
-javax.print.event
-javax.rmi
-javax.rmi.CORBA
-javax.rmi.ssl
-javax.script
-javax.security.auth
-javax.security.auth.callback
-javax.security.auth.kerberos
-javax.security.auth.login
-javax.security.auth.spi
-javax.security.auth.x500
-javax.security.cert
-javax.security.sasl
-javax.sound.midi
-javax.sound.midi.spi
-javax.sound.sampled
-javax.sound.sampled.spi
-javax.sql
-javax.sql.rowset
-javax.sql.rowset.serial
-javax.sql.rowset.spi
-javax.swing
-javax.swing.border
-javax.swing.colorchooser
-javax.swing.event
-javax.swing.filechooser
-javax.swing.plaf
-javax.swing.plaf.basic
-javax.swing.plaf.metal
-javax.swing.plaf.multi
-javax.swing.plaf.nimbus
-javax.swing.plaf.synth
-javax.swing.table
-javax.swing.text
-javax.swing.text.html
-javax.swing.text.html.parser
-javax.swing.text.rtf
-javax.swing.tree
-javax.swing.undo
-javax.tools
-javax.transaction
-javax.transaction.xa
-javax.xml
-javax.xml.bind
-javax.xml.bind.annotation
-javax.xml.bind.annotation.adapters
-javax.xml.bind.attachment
-javax.xml.bind.helpers
-javax.xml.bind.util
-javax.xml.crypto
-javax.xml.crypto.dom
-javax.xml.crypto.dsig
-javax.xml.crypto.dsig.dom
-javax.xml.crypto.dsig.keyinfo
-javax.xml.crypto.dsig.spec
-javax.xml.datatype
-javax.xml.namespace
-javax.xml.parsers
-javax.xml.soap
-javax.xml.stream
-javax.xml.stream.events
-javax.xml.stream.util
-javax.xml.transform
-javax.xml.transform.dom
-javax.xml.transform.sax
-javax.xml.transform.stax
-javax.xml.transform.stream
-javax.xml.validation
-javax.xml.ws
-javax.xml.ws.handler
-javax.xml.ws.handler.soap
-javax.xml.ws.http
-javax.xml.ws.soap
-javax.xml.ws.spi
-javax.xml.ws.spi.http
-javax.xml.ws.wsaddressing
-javax.xml.xpath
-org.ietf.jgss
-org.omg.CORBA
-org.omg.CORBA.DynAnyPackage
-org.omg.CORBA.ORBPackage
-org.omg.CORBA.TypeCodePackage
-org.omg.CORBA.portable
-org.omg.CORBA_2_3
-org.omg.CORBA_2_3.portable
-org.omg.CosNaming
-org.omg.CosNaming.NamingContextExtPackage
-org.omg.CosNaming.NamingContextPackage
-org.omg.Dynamic
-org.omg.DynamicAny
-org.omg.DynamicAny.DynAnyFactoryPackage
-org.omg.DynamicAny.DynAnyPackage
-org.omg.IOP
-org.omg.IOP.CodecFactoryPackage
-org.omg.IOP.CodecPackage
-org.omg.Messaging
-org.omg.PortableInterceptor
-org.omg.PortableInterceptor.ORBInitInfoPackage
-org.omg.PortableServer
-org.omg.PortableServer.CurrentPackage
-org.omg.PortableServer.POAManagerPackage
-org.omg.PortableServer.POAPackage
-org.omg.PortableServer.ServantLocatorPackage
-org.omg.PortableServer.portable
-org.omg.SendingContext
-org.omg.stub.java.rmi
-org.w3c.dom
-org.w3c.dom.bootstrap
-org.w3c.dom.events
-org.w3c.dom.ls
-org.xml.sax
-org.xml.sax.ext
-org.xml.sax.helpers
diff --git a/spring-cloud-consul-binder/target/maven-archiver/pom.properties b/spring-cloud-consul-binder/target/maven-archiver/pom.properties
deleted file mode 100644
index d685c3ea..00000000
--- a/spring-cloud-consul-binder/target/maven-archiver/pom.properties
+++ /dev/null
@@ -1,5 +0,0 @@
-#Generated by Maven
-#Thu Sep 22 13:40:36 UTC 2016
-version=1.1.0.BUILD-SNAPSHOT
-groupId=org.springframework.cloud
-artifactId=spring-cloud-consul-binder
diff --git a/spring-cloud-consul-binder/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/spring-cloud-consul-binder/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
deleted file mode 100644
index 002193ca..00000000
--- a/spring-cloud-consul-binder/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
+++ /dev/null
@@ -1,8 +0,0 @@
-org/springframework/cloud/consul/binder/ConsulInboundMessageProducer$1.class
-org/springframework/cloud/consul/binder/ConsulBinder.class
-META-INF/spring-configuration-metadata.json
-org/springframework/cloud/consul/binder/EventService.class
-org/springframework/cloud/consul/binder/config/ConsulBinderProperties.class
-org/springframework/cloud/consul/binder/ConsulInboundMessageProducer.class
-org/springframework/cloud/consul/binder/config/ConsulBinderConfiguration.class
-org/springframework/cloud/consul/binder/ConsulSendingHandler.class
diff --git a/spring-cloud-consul-binder/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/spring-cloud-consul-binder/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
deleted file mode 100644
index 28a2a8c7..00000000
--- a/spring-cloud-consul-binder/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
+++ /dev/null
@@ -1,6 +0,0 @@
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-binder/src/main/java/org/springframework/cloud/consul/binder/ConsulInboundMessageProducer.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-binder/src/main/java/org/springframework/cloud/consul/binder/EventService.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-binder/src/main/java/org/springframework/cloud/consul/binder/config/ConsulBinderConfiguration.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-binder/src/main/java/org/springframework/cloud/consul/binder/ConsulSendingHandler.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-binder/src/main/java/org/springframework/cloud/consul/binder/config/ConsulBinderProperties.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-binder/src/main/java/org/springframework/cloud/consul/binder/ConsulBinder.java
diff --git a/spring-cloud-consul-binder/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst b/spring-cloud-consul-binder/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst
deleted file mode 100644
index 98a0eb4c..00000000
--- a/spring-cloud-consul-binder/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst
+++ /dev/null
@@ -1,10 +0,0 @@
-org/springframework/cloud/consul/binder/test/producer/TestProducer$StubPartitionSelectorStrategy.class
-org/springframework/cloud/consul/binder/ConsulBinderTests$ClasspathDeployer.class
-org/springframework/cloud/consul/binder/ConsulBinderTests.class
-org/springframework/cloud/consul/binder/ConsulBinderApplicationTests.class
-org/springframework/cloud/consul/binder/test/consumer/TestConsumer$1.class
-org/springframework/cloud/consul/binder/test/producer/TestProducer.class
-org/springframework/cloud/consul/binder/ConsulBinderApplicationTests$Application.class
-org/springframework/cloud/consul/binder/ConsulBinderApplicationTests$Events.class
-org/springframework/cloud/consul/binder/ConsulBinderTests$AppId.class
-org/springframework/cloud/consul/binder/test/consumer/TestConsumer.class
diff --git a/spring-cloud-consul-binder/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/spring-cloud-consul-binder/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst
deleted file mode 100644
index e454019a..00000000
--- a/spring-cloud-consul-binder/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst
+++ /dev/null
@@ -1,4 +0,0 @@
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-binder/src/test/java/org/springframework/cloud/consul/binder/ConsulBinderTests.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-binder/src/test/java/org/springframework/cloud/consul/binder/test/producer/TestProducer.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-binder/src/test/java/org/springframework/cloud/consul/binder/ConsulBinderApplicationTests.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-binder/src/test/java/org/springframework/cloud/consul/binder/test/consumer/TestConsumer.java
diff --git a/spring-cloud-consul-binder/target/spring-cloud-consul-binder-1.1.0.BUILD-SNAPSHOT-javadoc.jar b/spring-cloud-consul-binder/target/spring-cloud-consul-binder-1.1.0.BUILD-SNAPSHOT-javadoc.jar
deleted file mode 100644
index ef0b23d0..00000000
Binary files a/spring-cloud-consul-binder/target/spring-cloud-consul-binder-1.1.0.BUILD-SNAPSHOT-javadoc.jar and /dev/null differ
diff --git a/spring-cloud-consul-binder/target/spring-cloud-consul-binder-1.1.0.BUILD-SNAPSHOT-sources.jar b/spring-cloud-consul-binder/target/spring-cloud-consul-binder-1.1.0.BUILD-SNAPSHOT-sources.jar
deleted file mode 100644
index 805d2f1d..00000000
Binary files a/spring-cloud-consul-binder/target/spring-cloud-consul-binder-1.1.0.BUILD-SNAPSHOT-sources.jar and /dev/null differ
diff --git a/spring-cloud-consul-binder/target/spring-cloud-consul-binder-1.1.0.BUILD-SNAPSHOT.jar b/spring-cloud-consul-binder/target/spring-cloud-consul-binder-1.1.0.BUILD-SNAPSHOT.jar
deleted file mode 100644
index de64ca52..00000000
Binary files a/spring-cloud-consul-binder/target/spring-cloud-consul-binder-1.1.0.BUILD-SNAPSHOT.jar and /dev/null differ
diff --git a/spring-cloud-consul-binder/target/spring-cloud-consul-binder-1.1.0.RELEASE-javadoc.jar b/spring-cloud-consul-binder/target/spring-cloud-consul-binder-1.1.0.RELEASE-javadoc.jar
deleted file mode 100644
index d9737470..00000000
Binary files a/spring-cloud-consul-binder/target/spring-cloud-consul-binder-1.1.0.RELEASE-javadoc.jar and /dev/null differ
diff --git a/spring-cloud-consul-binder/target/spring-cloud-consul-binder-1.1.0.RELEASE-sources.jar b/spring-cloud-consul-binder/target/spring-cloud-consul-binder-1.1.0.RELEASE-sources.jar
deleted file mode 100644
index 829fc1db..00000000
Binary files a/spring-cloud-consul-binder/target/spring-cloud-consul-binder-1.1.0.RELEASE-sources.jar and /dev/null differ
diff --git a/spring-cloud-consul-binder/target/spring-cloud-consul-binder-1.1.0.RELEASE.jar b/spring-cloud-consul-binder/target/spring-cloud-consul-binder-1.1.0.RELEASE.jar
deleted file mode 100644
index ac56ca80..00000000
Binary files a/spring-cloud-consul-binder/target/spring-cloud-consul-binder-1.1.0.RELEASE.jar and /dev/null differ
diff --git a/spring-cloud-consul-binder/target/spring-cloud-consul-binder-1.1.1.BUILD-SNAPSHOT-javadoc.jar b/spring-cloud-consul-binder/target/spring-cloud-consul-binder-1.1.1.BUILD-SNAPSHOT-javadoc.jar
deleted file mode 100644
index b88677b0..00000000
Binary files a/spring-cloud-consul-binder/target/spring-cloud-consul-binder-1.1.1.BUILD-SNAPSHOT-javadoc.jar and /dev/null differ
diff --git a/spring-cloud-consul-binder/target/spring-cloud-consul-binder-1.1.1.BUILD-SNAPSHOT-sources.jar b/spring-cloud-consul-binder/target/spring-cloud-consul-binder-1.1.1.BUILD-SNAPSHOT-sources.jar
deleted file mode 100644
index b24d679c..00000000
Binary files a/spring-cloud-consul-binder/target/spring-cloud-consul-binder-1.1.1.BUILD-SNAPSHOT-sources.jar and /dev/null differ
diff --git a/spring-cloud-consul-binder/target/spring-cloud-consul-binder-1.1.1.BUILD-SNAPSHOT.jar b/spring-cloud-consul-binder/target/spring-cloud-consul-binder-1.1.1.BUILD-SNAPSHOT.jar
deleted file mode 100644
index 5f08bcf9..00000000
Binary files a/spring-cloud-consul-binder/target/spring-cloud-consul-binder-1.1.1.BUILD-SNAPSHOT.jar and /dev/null differ
diff --git a/spring-cloud-consul-binder/target/test-classes/application.yml b/spring-cloud-consul-binder/target/test-classes/application.yml
deleted file mode 100644
index 65f59855..00000000
--- a/spring-cloud-consul-binder/target/test-classes/application.yml
+++ /dev/null
@@ -1,10 +0,0 @@
-spring:
- cloud:
- stream:
- binders:
- purchases:
- type: consul
- consul:
- binder:
-# host: localhost
-# port: 18500
diff --git a/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/ConsulBinderApplicationTests$Application.class b/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/ConsulBinderApplicationTests$Application.class
deleted file mode 100644
index 4becd4c2..00000000
Binary files a/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/ConsulBinderApplicationTests$Application.class and /dev/null differ
diff --git a/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/ConsulBinderApplicationTests$Events.class b/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/ConsulBinderApplicationTests$Events.class
deleted file mode 100644
index 8514aeb2..00000000
Binary files a/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/ConsulBinderApplicationTests$Events.class and /dev/null differ
diff --git a/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/ConsulBinderApplicationTests.class b/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/ConsulBinderApplicationTests.class
deleted file mode 100644
index 80d0e05c..00000000
Binary files a/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/ConsulBinderApplicationTests.class and /dev/null differ
diff --git a/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/ConsulBinderTests$AppId.class b/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/ConsulBinderTests$AppId.class
deleted file mode 100644
index 1c15e0df..00000000
Binary files a/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/ConsulBinderTests$AppId.class and /dev/null differ
diff --git a/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/ConsulBinderTests$ClasspathDeployer.class b/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/ConsulBinderTests$ClasspathDeployer.class
deleted file mode 100644
index fc4641fa..00000000
Binary files a/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/ConsulBinderTests$ClasspathDeployer.class and /dev/null differ
diff --git a/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/ConsulBinderTests.class b/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/ConsulBinderTests.class
deleted file mode 100644
index a63d2342..00000000
Binary files a/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/ConsulBinderTests.class and /dev/null differ
diff --git a/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/test/consumer/TestConsumer$1.class b/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/test/consumer/TestConsumer$1.class
deleted file mode 100644
index bae4ccad..00000000
Binary files a/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/test/consumer/TestConsumer$1.class and /dev/null differ
diff --git a/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/test/consumer/TestConsumer.class b/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/test/consumer/TestConsumer.class
deleted file mode 100644
index ab167966..00000000
Binary files a/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/test/consumer/TestConsumer.class and /dev/null differ
diff --git a/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/test/producer/TestProducer$StubPartitionSelectorStrategy.class b/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/test/producer/TestProducer$StubPartitionSelectorStrategy.class
deleted file mode 100644
index e2ae4ce0..00000000
Binary files a/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/test/producer/TestProducer$StubPartitionSelectorStrategy.class and /dev/null differ
diff --git a/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/test/producer/TestProducer.class b/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/test/producer/TestProducer.class
deleted file mode 100644
index 31855101..00000000
Binary files a/spring-cloud-consul-binder/target/test-classes/org/springframework/cloud/consul/binder/test/producer/TestProducer.class and /dev/null differ
diff --git a/spring-cloud-consul-config/target/apidocs/allclasses-frame.html b/spring-cloud-consul-config/target/apidocs/allclasses-frame.html
deleted file mode 100644
index 4a9b01b1..00000000
--- a/spring-cloud-consul-config/target/apidocs/allclasses-frame.html
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-All Classes (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-All Classes
-
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/allclasses-noframe.html b/spring-cloud-consul-config/target/apidocs/allclasses-noframe.html
deleted file mode 100644
index 20efe1d8..00000000
--- a/spring-cloud-consul-config/target/apidocs/allclasses-noframe.html
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-All Classes (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-All Classes
-
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/constant-values.html b/spring-cloud-consul-config/target/apidocs/constant-values.html
deleted file mode 100644
index 202063ff..00000000
--- a/spring-cloud-consul-config/target/apidocs/constant-values.html
+++ /dev/null
@@ -1,124 +0,0 @@
-
-
-
-
-
-
-Constant Field Values (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/deprecated-list.html b/spring-cloud-consul-config/target/apidocs/deprecated-list.html
deleted file mode 100644
index da85ec75..00000000
--- a/spring-cloud-consul-config/target/apidocs/deprecated-list.html
+++ /dev/null
@@ -1,148 +0,0 @@
-
-
-
-
-
-
-Deprecated List (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/help-doc.html b/spring-cloud-consul-config/target/apidocs/help-doc.html
deleted file mode 100644
index 79f98e82..00000000
--- a/spring-cloud-consul-config/target/apidocs/help-doc.html
+++ /dev/null
@@ -1,225 +0,0 @@
-
-
-
-
-
-
-API Help (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-Package
-Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:
-
-Interfaces (italic)
-Classes
-Enums
-Exceptions
-Errors
-Annotation Types
-
-
-
-Class/Interface
-Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:
-
-Class inheritance diagram
-Direct Subclasses
-All Known Subinterfaces
-All Known Implementing Classes
-Class/interface declaration
-Class/interface description
-
-
-Nested Class Summary
-Field Summary
-Constructor Summary
-Method Summary
-
-
-Field Detail
-Constructor Detail
-Method Detail
-
-Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.
-
-
-Annotation Type
-Each annotation type has its own separate page with the following sections:
-
-Annotation Type declaration
-Annotation Type description
-Required Element Summary
-Optional Element Summary
-Element Detail
-
-
-
-Enum
-Each enum has its own separate page with the following sections:
-
-Enum declaration
-Enum description
-Enum Constant Summary
-Enum Constant Detail
-
-
-
-Use
-Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.
-
-
-Tree (Class Hierarchy)
-There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.
-
-When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
-When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
-
-
-
-Deprecated API
-The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.
-
-
-Index
-The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.
-
-
-Prev/Next
-These links take you to the next or previous class, interface, package, or related page.
-
-
-Frames/No Frames
-These links show and hide the HTML frames. All pages are available with or without frames.
-
-
-All Classes
-The All Classes link shows all classes and interfaces except non-static nested types.
-
-
-Serialized Form
-Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.
-
-
-Constant Field Values
-The Constant Field Values page lists the static final fields and their values.
-
-
-
This help file applies to API documentation generated using the standard doclet.
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/index-all.html b/spring-cloud-consul-config/target/apidocs/index-all.html
deleted file mode 100644
index 57fa286a..00000000
--- a/spring-cloud-consul-config/target/apidocs/index-all.html
+++ /dev/null
@@ -1,290 +0,0 @@
-
-
-
-
-
-
-Index (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-C G I L O P S V W
-
-
-
C
-
-close() - Method in class org.springframework.cloud.consul.config.ConfigWatch
-
-ConfigWatch - Class in org.springframework.cloud.consul.config
-
-ConfigWatch(ConsulConfigProperties, List<String>, ConsulClient) - Constructor for class org.springframework.cloud.consul.config.ConfigWatch
-
-configWatch(ConsulConfigProperties, ConsulPropertySourceLocator, ConsulClient) - Method in class org.springframework.cloud.consul.config.ConsulConfigAutoConfiguration.ConsulRefreshConfiguration
-
-ConsulConfigAutoConfiguration - Class in org.springframework.cloud.consul.config
-
-ConsulConfigAutoConfiguration() - Constructor for class org.springframework.cloud.consul.config.ConsulConfigAutoConfiguration
-
-ConsulConfigAutoConfiguration.ConsulRefreshConfiguration - Class in org.springframework.cloud.consul.config
-
-ConsulConfigBootstrapConfiguration - Class in org.springframework.cloud.consul.config
-
-ConsulConfigBootstrapConfiguration() - Constructor for class org.springframework.cloud.consul.config.ConsulConfigBootstrapConfiguration
-
-ConsulConfigBootstrapConfiguration.ConsulPropertySourceConfiguration - Class in org.springframework.cloud.consul.config
-
-consulConfigProperties() - Method in class org.springframework.cloud.consul.config.ConsulConfigBootstrapConfiguration.ConsulPropertySourceConfiguration
-
-ConsulConfigProperties - Class in org.springframework.cloud.consul.config
-
-ConsulConfigProperties() - Constructor for class org.springframework.cloud.consul.config.ConsulConfigProperties
-
-ConsulConfigProperties.Format - Enum in org.springframework.cloud.consul.config
-
-There are many ways in which we can specify configuration in consul i.e.,
-
-
-
- Nested key value style: Where value is either a constant or part of the key (nested).
-
-ConsulConfigProperties.Watch - Class in org.springframework.cloud.consul.config
-
-ConsulFilesPropertySource - Class in org.springframework.cloud.consul.config
-
-ConsulFilesPropertySource(String, ConsulClient, ConsulConfigProperties) - Constructor for class org.springframework.cloud.consul.config.ConsulFilesPropertySource
-
-ConsulPropertySource - Class in org.springframework.cloud.consul.config
-
-ConsulPropertySource(String, ConsulClient, ConsulConfigProperties) - Constructor for class org.springframework.cloud.consul.config.ConsulPropertySource
-
-ConsulPropertySourceConfiguration() - Constructor for class org.springframework.cloud.consul.config.ConsulConfigBootstrapConfiguration.ConsulPropertySourceConfiguration
-
-consulPropertySourceLocator(ConsulConfigProperties) - Method in class org.springframework.cloud.consul.config.ConsulConfigBootstrapConfiguration.ConsulPropertySourceConfiguration
-
-ConsulPropertySourceLocator - Class in org.springframework.cloud.consul.config
-
-ConsulPropertySourceLocator(ConsulClient, ConsulConfigProperties) - Constructor for class org.springframework.cloud.consul.config.ConsulPropertySourceLocator
-
-ConsulRefreshConfiguration() - Constructor for class org.springframework.cloud.consul.config.ConsulConfigAutoConfiguration.ConsulRefreshConfiguration
-
-
-
-
-
-
G
-
-generateProperties(String, ConsulConfigProperties.Format) - Method in class org.springframework.cloud.consul.config.ConsulPropertySource
-
-getConfigProperties() - Method in class org.springframework.cloud.consul.config.ConsulPropertySource
-
-getContext() - Method in class org.springframework.cloud.consul.config.ConsulPropertySource
-
-getContexts() - Method in class org.springframework.cloud.consul.config.ConsulPropertySourceLocator
-
-getDecoded(String) - Method in class org.springframework.cloud.consul.config.ConsulPropertySource
-
-
-
-getProperties() - Method in class org.springframework.cloud.consul.config.ConsulPropertySource
-
-getProperty(String) - Method in class org.springframework.cloud.consul.config.ConsulPropertySource
-
-getPropertyNames() - Method in class org.springframework.cloud.consul.config.ConsulPropertySource
-
-
-
-
-
-
I
-
-init() - Method in class org.springframework.cloud.consul.config.ConsulConfigProperties
-
-init() - Method in class org.springframework.cloud.consul.config.ConsulFilesPropertySource
-
-init(GetValue) - Method in class org.springframework.cloud.consul.config.ConsulFilesPropertySource
-
-init() - Method in class org.springframework.cloud.consul.config.ConsulPropertySource
-
-
-
-
-
-
L
-
-locate(Environment) - Method in class org.springframework.cloud.consul.config.ConsulPropertySourceLocator
-
-
-
-
-
-
O
-
-org.springframework.cloud.consul.config - package org.springframework.cloud.consul.config
-
-
-
-
-
-
P
-
-parsePropertiesInKeyValueFormat(List<GetValue>) - Method in class org.springframework.cloud.consul.config.ConsulPropertySource
-
-Parses the properties in key value style i.e., values are expected to be either a
- sub key or a constant
-
-parsePropertiesWithNonKeyValueFormat(List<GetValue>, ConsulConfigProperties.Format) - Method in class org.springframework.cloud.consul.config.ConsulPropertySource
-
-Parses the properties using the format which is not a key value style i.e., either
- java properties style or YAML style
-
-parseValue(GetValue, ConsulConfigProperties.Format) - Method in class org.springframework.cloud.consul.config.ConsulPropertySource
-
-
-
-
-
-
S
-
-setApplicationEventPublisher(ApplicationEventPublisher) - Method in class org.springframework.cloud.consul.config.ConfigWatch
-
-start() - Method in class org.springframework.cloud.consul.config.ConfigWatch
-
-
-
-
-
-
V
-
-valueOf(String) - Static method in enum org.springframework.cloud.consul.config.ConsulConfigProperties.Format
-
-Returns the enum constant of this type with the specified name.
-
-values() - Static method in enum org.springframework.cloud.consul.config.ConsulConfigProperties.Format
-
-Returns an array containing the constants of this enum type, in
-the order they are declared.
-
-
-
-
-
-
W
-
-Watch() - Constructor for class org.springframework.cloud.consul.config.ConsulConfigProperties.Watch
-
-watchConfigKeyValues() - Method in class org.springframework.cloud.consul.config.ConfigWatch
-
-
-
C G I L O P S V W
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/index.html b/spring-cloud-consul-config/target/apidocs/index.html
deleted file mode 100644
index 551a9fb7..00000000
--- a/spring-cloud-consul-config/target/apidocs/index.html
+++ /dev/null
@@ -1,72 +0,0 @@
-
-
-
-
-
-
-Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-Frame Alert
-This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to Non-frame version .
-
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConfigWatch.html b/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConfigWatch.html
deleted file mode 100644
index 30cfcc33..00000000
--- a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConfigWatch.html
+++ /dev/null
@@ -1,335 +0,0 @@
-
-
-
-
-
-
-ConfigWatch (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.config.ConfigWatch
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulConfigAutoConfiguration.ConsulRefreshConfiguration.html b/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulConfigAutoConfiguration.ConsulRefreshConfiguration.html
deleted file mode 100644
index bb432819..00000000
--- a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulConfigAutoConfiguration.ConsulRefreshConfiguration.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-
-ConsulConfigAutoConfiguration.ConsulRefreshConfiguration (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.config.ConsulConfigAutoConfiguration.ConsulRefreshConfiguration
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulConfigAutoConfiguration.html b/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulConfigAutoConfiguration.html
deleted file mode 100644
index e73536ed..00000000
--- a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulConfigAutoConfiguration.html
+++ /dev/null
@@ -1,263 +0,0 @@
-
-
-
-
-
-
-ConsulConfigAutoConfiguration (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.config.ConsulConfigAutoConfiguration
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulConfigBootstrapConfiguration.ConsulPropertySourceConfiguration.html b/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulConfigBootstrapConfiguration.ConsulPropertySourceConfiguration.html
deleted file mode 100644
index 812b82f0..00000000
--- a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulConfigBootstrapConfiguration.ConsulPropertySourceConfiguration.html
+++ /dev/null
@@ -1,297 +0,0 @@
-
-
-
-
-
-
-ConsulConfigBootstrapConfiguration.ConsulPropertySourceConfiguration (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.config.ConsulConfigBootstrapConfiguration.ConsulPropertySourceConfiguration
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulConfigBootstrapConfiguration.html b/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulConfigBootstrapConfiguration.html
deleted file mode 100644
index 509002d5..00000000
--- a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulConfigBootstrapConfiguration.html
+++ /dev/null
@@ -1,261 +0,0 @@
-
-
-
-
-
-
-ConsulConfigBootstrapConfiguration (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.config.ConsulConfigBootstrapConfiguration
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulConfigProperties.Format.html b/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulConfigProperties.Format.html
deleted file mode 100644
index 0ee520c5..00000000
--- a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulConfigProperties.Format.html
+++ /dev/null
@@ -1,410 +0,0 @@
-
-
-
-
-
-
-ConsulConfigProperties.Format (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Enum Constant Summary
-
-Enum Constants
-
-Enum Constant and Description
-
-
-FILES
-Indicates that the configuration specified in consul uses keys as files.
-
-
-
-KEY_VALUE
-Indicates that the configuration specified in consul is of type native key values.
-
-
-
-PROPERTIES
-Indicates that the configuration specified in consul is of property style i.e.,
- value of the consul key would be a list of key=value pairs separated by new lines.
-
-
-
-YAML
-Indicates that the configuration specified in consul is of YAML style i.e., value
- of the consul key would be YAML format
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Enum Constant Detail
-
-
-
-
-
-
-
-
-
-PROPERTIES
-public static final ConsulConfigProperties.Format PROPERTIES
-Indicates that the configuration specified in consul is of property style i.e.,
- value of the consul key would be a list of key=value pairs separated by new lines.
-
-
-
-
-
-
-
-YAML
-public static final ConsulConfigProperties.Format YAML
-Indicates that the configuration specified in consul is of YAML style i.e., value
- of the consul key would be YAML format
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-valueOf
-public static ConsulConfigProperties.Format valueOf(String name)
-Returns the enum constant of this type with the specified name.
-The string must match exactly an identifier used to declare an
-enum constant in this type. (Extraneous whitespace characters are
-not permitted.)
-
-Parameters:
-name - the name of the enum constant to be returned.
-Returns:
-the enum constant with the specified name
-Throws:
-IllegalArgumentException - if this enum type has no constant with the specified name
-NullPointerException - if the argument is null
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulConfigProperties.Watch.html b/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulConfigProperties.Watch.html
deleted file mode 100644
index c5964f37..00000000
--- a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulConfigProperties.Watch.html
+++ /dev/null
@@ -1,241 +0,0 @@
-
-
-
-
-
-
-ConsulConfigProperties.Watch (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.config.ConsulConfigProperties.Watch
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-Watch ()
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-Watch
-public Watch()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulConfigProperties.html b/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulConfigProperties.html
deleted file mode 100644
index 072fc58a..00000000
--- a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulConfigProperties.html
+++ /dev/null
@@ -1,306 +0,0 @@
-
-
-
-
-
-
-ConsulConfigProperties (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.config.ConsulConfigProperties
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-Nested Classes
-
-Modifier and Type
-Class and Description
-
-
-static class
-ConsulConfigProperties.Format
-There are many ways in which we can specify configuration in consul i.e.,
-
-
-
- Nested key value style: Where value is either a constant or part of the key (nested).
-
-
-
-class
-ConsulConfigProperties.Watch
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulFilesPropertySource.html b/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulFilesPropertySource.html
deleted file mode 100644
index fe144d69..00000000
--- a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulFilesPropertySource.html
+++ /dev/null
@@ -1,362 +0,0 @@
-
-
-
-
-
-
-ConsulFilesPropertySource (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.core.env.PropertySource<T>
-
-
-org.springframework.core.env.EnumerablePropertySource<com.ecwid.consul.v1.ConsulClient>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-Nested classes/interfaces inherited from class org.springframework.core.env.PropertySource
-org.springframework.core.env.PropertySource.StubPropertySource
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-Fields inherited from class org.springframework.core.env.PropertySource
-logger, name, source
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class org.springframework.core.env.EnumerablePropertySource
-containsProperty
-
-
-
-
-
-Methods inherited from class org.springframework.core.env.PropertySource
-equals, getName, getSource, hashCode, named, toString
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulPropertySource.html b/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulPropertySource.html
deleted file mode 100644
index 7f39cb7e..00000000
--- a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulPropertySource.html
+++ /dev/null
@@ -1,505 +0,0 @@
-
-
-
-
-
-
-ConsulPropertySource (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.core.env.PropertySource<T>
-
-
-org.springframework.core.env.EnumerablePropertySource<com.ecwid.consul.v1.ConsulClient>
-
-
-org.springframework.cloud.consul.config.ConsulPropertySource
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-Nested classes/interfaces inherited from class org.springframework.core.env.PropertySource
-org.springframework.core.env.PropertySource.StubPropertySource
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-Fields inherited from class org.springframework.core.env.PropertySource
-logger, name, source
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class org.springframework.core.env.EnumerablePropertySource
-containsProperty
-
-
-
-
-
-Methods inherited from class org.springframework.core.env.PropertySource
-equals, getName, getSource, hashCode, named, toString
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-init
-public void init()
-
-
-
-
-
-
-
-parsePropertiesInKeyValueFormat
-protected void parsePropertiesInKeyValueFormat(List <com.ecwid.consul.v1.kv.model.GetValue> values)
-Parses the properties in key value style i.e., values are expected to be either a
- sub key or a constant
-
-Parameters:
-values -
-
-
-
-
-
-
-
-
-parsePropertiesWithNonKeyValueFormat
-protected void parsePropertiesWithNonKeyValueFormat(List <com.ecwid.consul.v1.kv.model.GetValue> values,
- ConsulConfigProperties.Format format)
-Parses the properties using the format which is not a key value style i.e., either
- java properties style or YAML style
-
-Parameters:
-values -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulPropertySourceLocator.html b/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulPropertySourceLocator.html
deleted file mode 100644
index 977fd754..00000000
--- a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/ConsulPropertySourceLocator.html
+++ /dev/null
@@ -1,301 +0,0 @@
-
-
-
-
-
-
-ConsulPropertySourceLocator (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.config.ConsulPropertySourceLocator
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConfigWatch.html b/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConfigWatch.html
deleted file mode 100644
index f064ed04..00000000
--- a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConfigWatch.html
+++ /dev/null
@@ -1,151 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.config.ConfigWatch (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulConfigAutoConfiguration.ConsulRefreshConfiguration.html b/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulConfigAutoConfiguration.ConsulRefreshConfiguration.html
deleted file mode 100644
index 29f95404..00000000
--- a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulConfigAutoConfiguration.ConsulRefreshConfiguration.html
+++ /dev/null
@@ -1,124 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.config.ConsulConfigAutoConfiguration.ConsulRefreshConfiguration (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of org.springframework.cloud.consul.config.ConsulConfigAutoConfiguration.ConsulRefreshConfiguration
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulConfigAutoConfiguration.html b/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulConfigAutoConfiguration.html
deleted file mode 100644
index d9240f73..00000000
--- a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulConfigAutoConfiguration.html
+++ /dev/null
@@ -1,124 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.config.ConsulConfigAutoConfiguration (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of org.springframework.cloud.consul.config.ConsulConfigAutoConfiguration
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulConfigBootstrapConfiguration.ConsulPropertySourceConfiguration.html b/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulConfigBootstrapConfiguration.ConsulPropertySourceConfiguration.html
deleted file mode 100644
index 0f96b403..00000000
--- a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulConfigBootstrapConfiguration.ConsulPropertySourceConfiguration.html
+++ /dev/null
@@ -1,124 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.config.ConsulConfigBootstrapConfiguration.ConsulPropertySourceConfiguration (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of org.springframework.cloud.consul.config.ConsulConfigBootstrapConfiguration.ConsulPropertySourceConfiguration
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulConfigBootstrapConfiguration.html b/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulConfigBootstrapConfiguration.html
deleted file mode 100644
index 95bcb941..00000000
--- a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulConfigBootstrapConfiguration.html
+++ /dev/null
@@ -1,124 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.config.ConsulConfigBootstrapConfiguration (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of org.springframework.cloud.consul.config.ConsulConfigBootstrapConfiguration
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulConfigProperties.Format.html b/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulConfigProperties.Format.html
deleted file mode 100644
index 6ece98dd..00000000
--- a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulConfigProperties.Format.html
+++ /dev/null
@@ -1,185 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.config.ConsulConfigProperties.Format (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulConfigProperties.Watch.html b/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulConfigProperties.Watch.html
deleted file mode 100644
index 5055faac..00000000
--- a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulConfigProperties.Watch.html
+++ /dev/null
@@ -1,124 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.config.ConsulConfigProperties.Watch (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of org.springframework.cloud.consul.config.ConsulConfigProperties.Watch
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulConfigProperties.html b/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulConfigProperties.html
deleted file mode 100644
index 1b7427da..00000000
--- a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulConfigProperties.html
+++ /dev/null
@@ -1,199 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.config.ConsulConfigProperties (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulFilesPropertySource.html b/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulFilesPropertySource.html
deleted file mode 100644
index 9f314e27..00000000
--- a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulFilesPropertySource.html
+++ /dev/null
@@ -1,124 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.config.ConsulFilesPropertySource (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of org.springframework.cloud.consul.config.ConsulFilesPropertySource
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulPropertySource.html b/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulPropertySource.html
deleted file mode 100644
index efc2c5d8..00000000
--- a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulPropertySource.html
+++ /dev/null
@@ -1,149 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.config.ConsulPropertySource (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulPropertySourceLocator.html b/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulPropertySourceLocator.html
deleted file mode 100644
index fb5b1843..00000000
--- a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/class-use/ConsulPropertySourceLocator.html
+++ /dev/null
@@ -1,164 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.config.ConsulPropertySourceLocator (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/package-frame.html b/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/package-frame.html
deleted file mode 100644
index 875136fa..00000000
--- a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/package-frame.html
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
-
-
-org.springframework.cloud.consul.config (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/package-summary.html b/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/package-summary.html
deleted file mode 100644
index 0f95b6b7..00000000
--- a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/package-summary.html
+++ /dev/null
@@ -1,195 +0,0 @@
-
-
-
-
-
-
-org.springframework.cloud.consul.config (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-Prev Package
-Next Package
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Enum Summary
-
-Enum
-Description
-
-
-
-ConsulConfigProperties.Format
-
-There are many ways in which we can specify configuration in consul i.e.,
-
-
-
- Nested key value style: Where value is either a constant or part of the key (nested).
-
-
-
-
-
-
-
-
-
-
-
-Prev Package
-Next Package
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/package-tree.html b/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/package-tree.html
deleted file mode 100644
index dd63c980..00000000
--- a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/package-tree.html
+++ /dev/null
@@ -1,165 +0,0 @@
-
-
-
-
-
-
-org.springframework.cloud.consul.config Class Hierarchy (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
Class Hierarchy
-
-
Enum Hierarchy
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/package-use.html b/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/package-use.html
deleted file mode 100644
index 0f6d92d9..00000000
--- a/spring-cloud-consul-config/target/apidocs/org/springframework/cloud/consul/config/package-use.html
+++ /dev/null
@@ -1,160 +0,0 @@
-
-
-
-
-
-
-Uses of Package org.springframework.cloud.consul.config (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/overview-tree.html b/spring-cloud-consul-config/target/apidocs/overview-tree.html
deleted file mode 100644
index 77d17553..00000000
--- a/spring-cloud-consul-config/target/apidocs/overview-tree.html
+++ /dev/null
@@ -1,169 +0,0 @@
-
-
-
-
-
-
-Class Hierarchy (Spring Cloud Consul Config 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
Class Hierarchy
-
-
Enum Hierarchy
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-config/target/apidocs/package-list b/spring-cloud-consul-config/target/apidocs/package-list
deleted file mode 100644
index fa4febf2..00000000
--- a/spring-cloud-consul-config/target/apidocs/package-list
+++ /dev/null
@@ -1 +0,0 @@
-org.springframework.cloud.consul.config
diff --git a/spring-cloud-consul-config/target/apidocs/script.js b/spring-cloud-consul-config/target/apidocs/script.js
deleted file mode 100644
index b3463569..00000000
--- a/spring-cloud-consul-config/target/apidocs/script.js
+++ /dev/null
@@ -1,30 +0,0 @@
-function show(type)
-{
- count = 0;
- for (var key in methods) {
- var row = document.getElementById(key);
- if ((methods[key] & type) != 0) {
- row.style.display = '';
- row.className = (count++ % 2) ? rowColor : altColor;
- }
- else
- row.style.display = 'none';
- }
- updateTabs(type);
-}
-
-function updateTabs(type)
-{
- for (var value in tabs) {
- var sNode = document.getElementById(tabs[value][0]);
- var spanNode = sNode.firstChild;
- if (value == type) {
- sNode.className = activeTableTab;
- spanNode.innerHTML = tabs[value][1];
- }
- else {
- sNode.className = tableTab;
- spanNode.innerHTML = "" + tabs[value][1] + " ";
- }
- }
-}
diff --git a/spring-cloud-consul-config/target/apidocs/stylesheet.css b/spring-cloud-consul-config/target/apidocs/stylesheet.css
deleted file mode 100644
index 98055b22..00000000
--- a/spring-cloud-consul-config/target/apidocs/stylesheet.css
+++ /dev/null
@@ -1,574 +0,0 @@
-/* Javadoc style sheet */
-/*
-Overall document style
-*/
-
-@import url('resources/fonts/dejavu.css');
-
-body {
- background-color:#ffffff;
- color:#353833;
- font-family:'DejaVu Sans', Arial, Helvetica, sans-serif;
- font-size:14px;
- margin:0;
-}
-a:link, a:visited {
- text-decoration:none;
- color:#4A6782;
-}
-a:hover, a:focus {
- text-decoration:none;
- color:#bb7a2a;
-}
-a:active {
- text-decoration:none;
- color:#4A6782;
-}
-a[name] {
- color:#353833;
-}
-a[name]:hover {
- text-decoration:none;
- color:#353833;
-}
-pre {
- font-family:'DejaVu Sans Mono', monospace;
- font-size:14px;
-}
-h1 {
- font-size:20px;
-}
-h2 {
- font-size:18px;
-}
-h3 {
- font-size:16px;
- font-style:italic;
-}
-h4 {
- font-size:13px;
-}
-h5 {
- font-size:12px;
-}
-h6 {
- font-size:11px;
-}
-ul {
- list-style-type:disc;
-}
-code, tt {
- font-family:'DejaVu Sans Mono', monospace;
- font-size:14px;
- padding-top:4px;
- margin-top:8px;
- line-height:1.4em;
-}
-dt code {
- font-family:'DejaVu Sans Mono', monospace;
- font-size:14px;
- padding-top:4px;
-}
-table tr td dt code {
- font-family:'DejaVu Sans Mono', monospace;
- font-size:14px;
- vertical-align:top;
- padding-top:4px;
-}
-sup {
- font-size:8px;
-}
-/*
-Document title and Copyright styles
-*/
-.clear {
- clear:both;
- height:0px;
- overflow:hidden;
-}
-.aboutLanguage {
- float:right;
- padding:0px 21px;
- font-size:11px;
- z-index:200;
- margin-top:-9px;
-}
-.legalCopy {
- margin-left:.5em;
-}
-.bar a, .bar a:link, .bar a:visited, .bar a:active {
- color:#FFFFFF;
- text-decoration:none;
-}
-.bar a:hover, .bar a:focus {
- color:#bb7a2a;
-}
-.tab {
- background-color:#0066FF;
- color:#ffffff;
- padding:8px;
- width:5em;
- font-weight:bold;
-}
-/*
-Navigation bar styles
-*/
-.bar {
- background-color:#4D7A97;
- color:#FFFFFF;
- padding:.8em .5em .4em .8em;
- height:auto;/*height:1.8em;*/
- font-size:11px;
- margin:0;
-}
-.topNav {
- background-color:#4D7A97;
- color:#FFFFFF;
- float:left;
- padding:0;
- width:100%;
- clear:right;
- height:2.8em;
- padding-top:10px;
- overflow:hidden;
- font-size:12px;
-}
-.bottomNav {
- margin-top:10px;
- background-color:#4D7A97;
- color:#FFFFFF;
- float:left;
- padding:0;
- width:100%;
- clear:right;
- height:2.8em;
- padding-top:10px;
- overflow:hidden;
- font-size:12px;
-}
-.subNav {
- background-color:#dee3e9;
- float:left;
- width:100%;
- overflow:hidden;
- font-size:12px;
-}
-.subNav div {
- clear:left;
- float:left;
- padding:0 0 5px 6px;
- text-transform:uppercase;
-}
-ul.navList, ul.subNavList {
- float:left;
- margin:0 25px 0 0;
- padding:0;
-}
-ul.navList li{
- list-style:none;
- float:left;
- padding: 5px 6px;
- text-transform:uppercase;
-}
-ul.subNavList li{
- list-style:none;
- float:left;
-}
-.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited {
- color:#FFFFFF;
- text-decoration:none;
- text-transform:uppercase;
-}
-.topNav a:hover, .bottomNav a:hover {
- text-decoration:none;
- color:#bb7a2a;
- text-transform:uppercase;
-}
-.navBarCell1Rev {
- background-color:#F8981D;
- color:#253441;
- margin: auto 5px;
-}
-.skipNav {
- position:absolute;
- top:auto;
- left:-9999px;
- overflow:hidden;
-}
-/*
-Page header and footer styles
-*/
-.header, .footer {
- clear:both;
- margin:0 20px;
- padding:5px 0 0 0;
-}
-.indexHeader {
- margin:10px;
- position:relative;
-}
-.indexHeader span{
- margin-right:15px;
-}
-.indexHeader h1 {
- font-size:13px;
-}
-.title {
- color:#2c4557;
- margin:10px 0;
-}
-.subTitle {
- margin:5px 0 0 0;
-}
-.header ul {
- margin:0 0 15px 0;
- padding:0;
-}
-.footer ul {
- margin:20px 0 5px 0;
-}
-.header ul li, .footer ul li {
- list-style:none;
- font-size:13px;
-}
-/*
-Heading styles
-*/
-div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 {
- background-color:#dee3e9;
- border:1px solid #d0d9e0;
- margin:0 0 6px -8px;
- padding:7px 5px;
-}
-ul.blockList ul.blockList ul.blockList li.blockList h3 {
- background-color:#dee3e9;
- border:1px solid #d0d9e0;
- margin:0 0 6px -8px;
- padding:7px 5px;
-}
-ul.blockList ul.blockList li.blockList h3 {
- padding:0;
- margin:15px 0;
-}
-ul.blockList li.blockList h2 {
- padding:0px 0 20px 0;
-}
-/*
-Page layout container styles
-*/
-.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer {
- clear:both;
- padding:10px 20px;
- position:relative;
-}
-.indexContainer {
- margin:10px;
- position:relative;
- font-size:12px;
-}
-.indexContainer h2 {
- font-size:13px;
- padding:0 0 3px 0;
-}
-.indexContainer ul {
- margin:0;
- padding:0;
-}
-.indexContainer ul li {
- list-style:none;
- padding-top:2px;
-}
-.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt {
- font-size:12px;
- font-weight:bold;
- margin:10px 0 0 0;
- color:#4E4E4E;
-}
-.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd {
- margin:5px 0 10px 0px;
- font-size:14px;
- font-family:'DejaVu Sans Mono',monospace;
-}
-.serializedFormContainer dl.nameValue dt {
- margin-left:1px;
- font-size:1.1em;
- display:inline;
- font-weight:bold;
-}
-.serializedFormContainer dl.nameValue dd {
- margin:0 0 0 1px;
- font-size:1.1em;
- display:inline;
-}
-/*
-List styles
-*/
-ul.horizontal li {
- display:inline;
- font-size:0.9em;
-}
-ul.inheritance {
- margin:0;
- padding:0;
-}
-ul.inheritance li {
- display:inline;
- list-style:none;
-}
-ul.inheritance li ul.inheritance {
- margin-left:15px;
- padding-left:15px;
- padding-top:1px;
-}
-ul.blockList, ul.blockListLast {
- margin:10px 0 10px 0;
- padding:0;
-}
-ul.blockList li.blockList, ul.blockListLast li.blockList {
- list-style:none;
- margin-bottom:15px;
- line-height:1.4;
-}
-ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList {
- padding:0px 20px 5px 10px;
- border:1px solid #ededed;
- background-color:#f8f8f8;
-}
-ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList {
- padding:0 0 5px 8px;
- background-color:#ffffff;
- border:none;
-}
-ul.blockList ul.blockList ul.blockList ul.blockList li.blockList {
- margin-left:0;
- padding-left:0;
- padding-bottom:15px;
- border:none;
-}
-ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast {
- list-style:none;
- border-bottom:none;
- padding-bottom:0;
-}
-table tr td dl, table tr td dl dt, table tr td dl dd {
- margin-top:0;
- margin-bottom:1px;
-}
-/*
-Table styles
-*/
-.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary {
- width:100%;
- border-left:1px solid #EEE;
- border-right:1px solid #EEE;
- border-bottom:1px solid #EEE;
-}
-.overviewSummary, .memberSummary {
- padding:0px;
-}
-.overviewSummary caption, .memberSummary caption, .typeSummary caption,
-.useSummary caption, .constantsSummary caption, .deprecatedSummary caption {
- position:relative;
- text-align:left;
- background-repeat:no-repeat;
- color:#253441;
- font-weight:bold;
- clear:none;
- overflow:hidden;
- padding:0px;
- padding-top:10px;
- padding-left:1px;
- margin:0px;
- white-space:pre;
-}
-.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link,
-.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link,
-.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover,
-.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover,
-.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active,
-.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active,
-.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited,
-.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited {
- color:#FFFFFF;
-}
-.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span,
-.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span {
- white-space:nowrap;
- padding-top:5px;
- padding-left:12px;
- padding-right:12px;
- padding-bottom:7px;
- display:inline-block;
- float:left;
- background-color:#F8981D;
- border: none;
- height:16px;
-}
-.memberSummary caption span.activeTableTab span {
- white-space:nowrap;
- padding-top:5px;
- padding-left:12px;
- padding-right:12px;
- margin-right:3px;
- display:inline-block;
- float:left;
- background-color:#F8981D;
- height:16px;
-}
-.memberSummary caption span.tableTab span {
- white-space:nowrap;
- padding-top:5px;
- padding-left:12px;
- padding-right:12px;
- margin-right:3px;
- display:inline-block;
- float:left;
- background-color:#4D7A97;
- height:16px;
-}
-.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab {
- padding-top:0px;
- padding-left:0px;
- padding-right:0px;
- background-image:none;
- float:none;
- display:inline;
-}
-.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd,
-.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd {
- display:none;
- width:5px;
- position:relative;
- float:left;
- background-color:#F8981D;
-}
-.memberSummary .activeTableTab .tabEnd {
- display:none;
- width:5px;
- margin-right:3px;
- position:relative;
- float:left;
- background-color:#F8981D;
-}
-.memberSummary .tableTab .tabEnd {
- display:none;
- width:5px;
- margin-right:3px;
- position:relative;
- background-color:#4D7A97;
- float:left;
-
-}
-.overviewSummary td, .memberSummary td, .typeSummary td,
-.useSummary td, .constantsSummary td, .deprecatedSummary td {
- text-align:left;
- padding:0px 0px 12px 10px;
-}
-th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th,
-td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{
- vertical-align:top;
- padding-right:0px;
- padding-top:8px;
- padding-bottom:3px;
-}
-th.colFirst, th.colLast, th.colOne, .constantsSummary th {
- background:#dee3e9;
- text-align:left;
- padding:8px 3px 3px 7px;
-}
-td.colFirst, th.colFirst {
- white-space:nowrap;
- font-size:13px;
-}
-td.colLast, th.colLast {
- font-size:13px;
-}
-td.colOne, th.colOne {
- font-size:13px;
-}
-.overviewSummary td.colFirst, .overviewSummary th.colFirst,
-.useSummary td.colFirst, .useSummary th.colFirst,
-.overviewSummary td.colOne, .overviewSummary th.colOne,
-.memberSummary td.colFirst, .memberSummary th.colFirst,
-.memberSummary td.colOne, .memberSummary th.colOne,
-.typeSummary td.colFirst{
- width:25%;
- vertical-align:top;
-}
-td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover {
- font-weight:bold;
-}
-.tableSubHeadingColor {
- background-color:#EEEEFF;
-}
-.altColor {
- background-color:#FFFFFF;
-}
-.rowColor {
- background-color:#EEEEEF;
-}
-/*
-Content styles
-*/
-.description pre {
- margin-top:0;
-}
-.deprecatedContent {
- margin:0;
- padding:10px 0;
-}
-.docSummary {
- padding:0;
-}
-
-ul.blockList ul.blockList ul.blockList li.blockList h3 {
- font-style:normal;
-}
-
-div.block {
- font-size:14px;
- font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
-}
-
-td.colLast div {
- padding-top:0px;
-}
-
-
-td.colLast a {
- padding-bottom:3px;
-}
-/*
-Formatting effect styles
-*/
-.sourceLineNo {
- color:green;
- padding:0 30px 0 0;
-}
-h1.hidden {
- visibility:hidden;
- overflow:hidden;
- font-size:10px;
-}
-.block {
- display:block;
- margin:3px 10px 2px 0px;
- color:#474747;
-}
-.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink,
-.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel,
-.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink {
- font-weight:bold;
-}
-.deprecationComment, .emphasizedPhrase, .interfaceName {
- font-style:italic;
-}
-
-div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase,
-div.block div.block span.interfaceName {
- font-style:normal;
-}
-
-div.contentContainer ul.blockList li.blockList h2{
- padding-bottom:0px;
-}
diff --git a/spring-cloud-consul-config/target/classes/META-INF/spring-configuration-metadata.json b/spring-cloud-consul-config/target/classes/META-INF/spring-configuration-metadata.json
deleted file mode 100644
index b8e586e2..00000000
--- a/spring-cloud-consul-config/target/classes/META-INF/spring-configuration-metadata.json
+++ /dev/null
@@ -1,86 +0,0 @@
-{
- "groups": [
- {
- "name": "spring.cloud.consul.config",
- "type": "org.springframework.cloud.consul.config.ConsulConfigProperties",
- "sourceType": "org.springframework.cloud.consul.config.ConsulConfigProperties"
- },
- {
- "name": "spring.cloud.consul.config.watch",
- "type": "org.springframework.cloud.consul.config.ConsulConfigProperties$Watch",
- "sourceType": "org.springframework.cloud.consul.config.ConsulConfigProperties"
- }
- ],
- "properties": [
- {
- "name": "spring.cloud.consul.config.acl-token",
- "type": "java.lang.String",
- "sourceType": "org.springframework.cloud.consul.config.ConsulConfigProperties"
- },
- {
- "name": "spring.cloud.consul.config.data-key",
- "type": "java.lang.String",
- "description": "If format is Format.PROPERTIES or Format.YAML\n then the following field is used as key to look up consul for configuration.",
- "sourceType": "org.springframework.cloud.consul.config.ConsulConfigProperties",
- "defaultValue": "data"
- },
- {
- "name": "spring.cloud.consul.config.default-context",
- "type": "java.lang.String",
- "sourceType": "org.springframework.cloud.consul.config.ConsulConfigProperties",
- "defaultValue": "application"
- },
- {
- "name": "spring.cloud.consul.config.enabled",
- "type": "java.lang.Boolean",
- "sourceType": "org.springframework.cloud.consul.config.ConsulConfigProperties",
- "defaultValue": true
- },
- {
- "name": "spring.cloud.consul.config.fail-fast",
- "type": "java.lang.Boolean",
- "description": "Throw exceptions during config lookup if true, otherwise, log warnings.",
- "sourceType": "org.springframework.cloud.consul.config.ConsulConfigProperties",
- "defaultValue": true
- },
- {
- "name": "spring.cloud.consul.config.format",
- "type": "org.springframework.cloud.consul.config.ConsulConfigProperties$Format",
- "sourceType": "org.springframework.cloud.consul.config.ConsulConfigProperties"
- },
- {
- "name": "spring.cloud.consul.config.prefix",
- "type": "java.lang.String",
- "sourceType": "org.springframework.cloud.consul.config.ConsulConfigProperties",
- "defaultValue": "config"
- },
- {
- "name": "spring.cloud.consul.config.profile-separator",
- "type": "java.lang.String",
- "sourceType": "org.springframework.cloud.consul.config.ConsulConfigProperties",
- "defaultValue": ","
- },
- {
- "name": "spring.cloud.consul.config.watch.delay",
- "type": "java.lang.Integer",
- "description": "The value of the fixed delay for the watch in millis. Defaults to 1000.",
- "sourceType": "org.springframework.cloud.consul.config.ConsulConfigProperties$Watch",
- "defaultValue": 1000
- },
- {
- "name": "spring.cloud.consul.config.watch.enabled",
- "type": "java.lang.Boolean",
- "description": "If the watch is enabled. Defaults to true.",
- "sourceType": "org.springframework.cloud.consul.config.ConsulConfigProperties$Watch",
- "defaultValue": true
- },
- {
- "name": "spring.cloud.consul.config.watch.wait-time",
- "type": "java.lang.Integer",
- "description": "The number of seconds to wait (or block) for watch query. Defaults to 60.",
- "sourceType": "org.springframework.cloud.consul.config.ConsulConfigProperties$Watch",
- "defaultValue": 60
- }
- ],
- "hints": []
-}
\ No newline at end of file
diff --git a/spring-cloud-consul-config/target/classes/META-INF/spring.factories b/spring-cloud-consul-config/target/classes/META-INF/spring.factories
deleted file mode 100644
index d1699b34..00000000
--- a/spring-cloud-consul-config/target/classes/META-INF/spring.factories
+++ /dev/null
@@ -1,7 +0,0 @@
-# Auto Configuration
-org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
-org.springframework.cloud.consul.config.ConsulConfigAutoConfiguration
-
-# Bootstrap Configuration
-org.springframework.cloud.bootstrap.BootstrapConfiguration=\
-org.springframework.cloud.consul.config.ConsulConfigBootstrapConfiguration
diff --git a/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConfigWatch$RefreshEventData.class b/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConfigWatch$RefreshEventData.class
deleted file mode 100644
index 21ce64a8..00000000
Binary files a/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConfigWatch$RefreshEventData.class and /dev/null differ
diff --git a/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConfigWatch.class b/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConfigWatch.class
deleted file mode 100644
index d75721cd..00000000
Binary files a/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConfigWatch.class and /dev/null differ
diff --git a/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulConfigAutoConfiguration$ConsulRefreshConfiguration.class b/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulConfigAutoConfiguration$ConsulRefreshConfiguration.class
deleted file mode 100644
index f58cc78b..00000000
Binary files a/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulConfigAutoConfiguration$ConsulRefreshConfiguration.class and /dev/null differ
diff --git a/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulConfigAutoConfiguration.class b/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulConfigAutoConfiguration.class
deleted file mode 100644
index 49a16e90..00000000
Binary files a/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulConfigAutoConfiguration.class and /dev/null differ
diff --git a/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulConfigBootstrapConfiguration$ConsulPropertySourceConfiguration.class b/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulConfigBootstrapConfiguration$ConsulPropertySourceConfiguration.class
deleted file mode 100644
index 0d489236..00000000
Binary files a/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulConfigBootstrapConfiguration$ConsulPropertySourceConfiguration.class and /dev/null differ
diff --git a/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulConfigBootstrapConfiguration.class b/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulConfigBootstrapConfiguration.class
deleted file mode 100644
index e6738dde..00000000
Binary files a/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulConfigBootstrapConfiguration.class and /dev/null differ
diff --git a/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulConfigProperties$Format.class b/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulConfigProperties$Format.class
deleted file mode 100644
index 14a03eee..00000000
Binary files a/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulConfigProperties$Format.class and /dev/null differ
diff --git a/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulConfigProperties$Watch.class b/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulConfigProperties$Watch.class
deleted file mode 100644
index 472f7c79..00000000
Binary files a/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulConfigProperties$Watch.class and /dev/null differ
diff --git a/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulConfigProperties.class b/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulConfigProperties.class
deleted file mode 100644
index fc040659..00000000
Binary files a/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulConfigProperties.class and /dev/null differ
diff --git a/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulFilesPropertySource.class b/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulFilesPropertySource.class
deleted file mode 100644
index 80d29594..00000000
Binary files a/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulFilesPropertySource.class and /dev/null differ
diff --git a/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulPropertySource$1.class b/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulPropertySource$1.class
deleted file mode 100644
index fe026e4e..00000000
Binary files a/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulPropertySource$1.class and /dev/null differ
diff --git a/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulPropertySource.class b/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulPropertySource.class
deleted file mode 100644
index e6a03255..00000000
Binary files a/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulPropertySource.class and /dev/null differ
diff --git a/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulPropertySourceLocator.class b/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulPropertySourceLocator.class
deleted file mode 100644
index 6c0973fb..00000000
Binary files a/spring-cloud-consul-config/target/classes/org/springframework/cloud/consul/config/ConsulPropertySourceLocator.class and /dev/null differ
diff --git a/spring-cloud-consul-config/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml b/spring-cloud-consul-config/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml
deleted file mode 100644
index 8b89c977..00000000
--- a/spring-cloud-consul-config/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
- src/main/javadoc
-
diff --git a/spring-cloud-consul-config/target/javadoc-bundle-options/package-list b/spring-cloud-consul-config/target/javadoc-bundle-options/package-list
deleted file mode 100644
index b52fe94b..00000000
--- a/spring-cloud-consul-config/target/javadoc-bundle-options/package-list
+++ /dev/null
@@ -1,209 +0,0 @@
-java.applet
-java.awt
-java.awt.color
-java.awt.datatransfer
-java.awt.dnd
-java.awt.event
-java.awt.font
-java.awt.geom
-java.awt.im
-java.awt.im.spi
-java.awt.image
-java.awt.image.renderable
-java.awt.print
-java.beans
-java.beans.beancontext
-java.io
-java.lang
-java.lang.annotation
-java.lang.instrument
-java.lang.invoke
-java.lang.management
-java.lang.ref
-java.lang.reflect
-java.math
-java.net
-java.nio
-java.nio.channels
-java.nio.channels.spi
-java.nio.charset
-java.nio.charset.spi
-java.nio.file
-java.nio.file.attribute
-java.nio.file.spi
-java.rmi
-java.rmi.activation
-java.rmi.dgc
-java.rmi.registry
-java.rmi.server
-java.security
-java.security.acl
-java.security.cert
-java.security.interfaces
-java.security.spec
-java.sql
-java.text
-java.text.spi
-java.util
-java.util.concurrent
-java.util.concurrent.atomic
-java.util.concurrent.locks
-java.util.jar
-java.util.logging
-java.util.prefs
-java.util.regex
-java.util.spi
-java.util.zip
-javax.accessibility
-javax.activation
-javax.activity
-javax.annotation
-javax.annotation.processing
-javax.crypto
-javax.crypto.interfaces
-javax.crypto.spec
-javax.imageio
-javax.imageio.event
-javax.imageio.metadata
-javax.imageio.plugins.bmp
-javax.imageio.plugins.jpeg
-javax.imageio.spi
-javax.imageio.stream
-javax.jws
-javax.jws.soap
-javax.lang.model
-javax.lang.model.element
-javax.lang.model.type
-javax.lang.model.util
-javax.management
-javax.management.loading
-javax.management.modelmbean
-javax.management.monitor
-javax.management.openmbean
-javax.management.relation
-javax.management.remote
-javax.management.remote.rmi
-javax.management.timer
-javax.naming
-javax.naming.directory
-javax.naming.event
-javax.naming.ldap
-javax.naming.spi
-javax.net
-javax.net.ssl
-javax.print
-javax.print.attribute
-javax.print.attribute.standard
-javax.print.event
-javax.rmi
-javax.rmi.CORBA
-javax.rmi.ssl
-javax.script
-javax.security.auth
-javax.security.auth.callback
-javax.security.auth.kerberos
-javax.security.auth.login
-javax.security.auth.spi
-javax.security.auth.x500
-javax.security.cert
-javax.security.sasl
-javax.sound.midi
-javax.sound.midi.spi
-javax.sound.sampled
-javax.sound.sampled.spi
-javax.sql
-javax.sql.rowset
-javax.sql.rowset.serial
-javax.sql.rowset.spi
-javax.swing
-javax.swing.border
-javax.swing.colorchooser
-javax.swing.event
-javax.swing.filechooser
-javax.swing.plaf
-javax.swing.plaf.basic
-javax.swing.plaf.metal
-javax.swing.plaf.multi
-javax.swing.plaf.nimbus
-javax.swing.plaf.synth
-javax.swing.table
-javax.swing.text
-javax.swing.text.html
-javax.swing.text.html.parser
-javax.swing.text.rtf
-javax.swing.tree
-javax.swing.undo
-javax.tools
-javax.transaction
-javax.transaction.xa
-javax.xml
-javax.xml.bind
-javax.xml.bind.annotation
-javax.xml.bind.annotation.adapters
-javax.xml.bind.attachment
-javax.xml.bind.helpers
-javax.xml.bind.util
-javax.xml.crypto
-javax.xml.crypto.dom
-javax.xml.crypto.dsig
-javax.xml.crypto.dsig.dom
-javax.xml.crypto.dsig.keyinfo
-javax.xml.crypto.dsig.spec
-javax.xml.datatype
-javax.xml.namespace
-javax.xml.parsers
-javax.xml.soap
-javax.xml.stream
-javax.xml.stream.events
-javax.xml.stream.util
-javax.xml.transform
-javax.xml.transform.dom
-javax.xml.transform.sax
-javax.xml.transform.stax
-javax.xml.transform.stream
-javax.xml.validation
-javax.xml.ws
-javax.xml.ws.handler
-javax.xml.ws.handler.soap
-javax.xml.ws.http
-javax.xml.ws.soap
-javax.xml.ws.spi
-javax.xml.ws.spi.http
-javax.xml.ws.wsaddressing
-javax.xml.xpath
-org.ietf.jgss
-org.omg.CORBA
-org.omg.CORBA.DynAnyPackage
-org.omg.CORBA.ORBPackage
-org.omg.CORBA.TypeCodePackage
-org.omg.CORBA.portable
-org.omg.CORBA_2_3
-org.omg.CORBA_2_3.portable
-org.omg.CosNaming
-org.omg.CosNaming.NamingContextExtPackage
-org.omg.CosNaming.NamingContextPackage
-org.omg.Dynamic
-org.omg.DynamicAny
-org.omg.DynamicAny.DynAnyFactoryPackage
-org.omg.DynamicAny.DynAnyPackage
-org.omg.IOP
-org.omg.IOP.CodecFactoryPackage
-org.omg.IOP.CodecPackage
-org.omg.Messaging
-org.omg.PortableInterceptor
-org.omg.PortableInterceptor.ORBInitInfoPackage
-org.omg.PortableServer
-org.omg.PortableServer.CurrentPackage
-org.omg.PortableServer.POAManagerPackage
-org.omg.PortableServer.POAPackage
-org.omg.PortableServer.ServantLocatorPackage
-org.omg.PortableServer.portable
-org.omg.SendingContext
-org.omg.stub.java.rmi
-org.w3c.dom
-org.w3c.dom.bootstrap
-org.w3c.dom.events
-org.w3c.dom.ls
-org.xml.sax
-org.xml.sax.ext
-org.xml.sax.helpers
diff --git a/spring-cloud-consul-config/target/maven-archiver/pom.properties b/spring-cloud-consul-config/target/maven-archiver/pom.properties
deleted file mode 100644
index 85d6612c..00000000
--- a/spring-cloud-consul-config/target/maven-archiver/pom.properties
+++ /dev/null
@@ -1,5 +0,0 @@
-#Generated by Maven
-#Thu Sep 22 13:40:23 UTC 2016
-version=1.1.0.BUILD-SNAPSHOT
-groupId=org.springframework.cloud
-artifactId=spring-cloud-consul-config
diff --git a/spring-cloud-consul-config/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/spring-cloud-consul-config/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
deleted file mode 100644
index 370e5ad4..00000000
--- a/spring-cloud-consul-config/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
+++ /dev/null
@@ -1,14 +0,0 @@
-META-INF/spring-configuration-metadata.json
-org/springframework/cloud/consul/config/ConsulFilesPropertySource.class
-org/springframework/cloud/consul/config/ConsulConfigProperties.class
-org/springframework/cloud/consul/config/ConsulConfigAutoConfiguration$ConsulRefreshConfiguration.class
-org/springframework/cloud/consul/config/ConsulConfigProperties$Format.class
-org/springframework/cloud/consul/config/ConfigWatch$RefreshEventData.class
-org/springframework/cloud/consul/config/ConfigWatch.class
-org/springframework/cloud/consul/config/ConsulPropertySource$1.class
-org/springframework/cloud/consul/config/ConsulConfigProperties$Watch.class
-org/springframework/cloud/consul/config/ConsulPropertySourceLocator.class
-org/springframework/cloud/consul/config/ConsulPropertySource.class
-org/springframework/cloud/consul/config/ConsulConfigBootstrapConfiguration.class
-org/springframework/cloud/consul/config/ConsulConfigAutoConfiguration.class
-org/springframework/cloud/consul/config/ConsulConfigBootstrapConfiguration$ConsulPropertySourceConfiguration.class
diff --git a/spring-cloud-consul-config/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/spring-cloud-consul-config/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
deleted file mode 100644
index 00842b3c..00000000
--- a/spring-cloud-consul-config/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
+++ /dev/null
@@ -1,7 +0,0 @@
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-config/src/main/java/org/springframework/cloud/consul/config/ConsulPropertySource.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-config/src/main/java/org/springframework/cloud/consul/config/ConsulPropertySourceLocator.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-config/src/main/java/org/springframework/cloud/consul/config/ConsulConfigProperties.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-config/src/main/java/org/springframework/cloud/consul/config/ConsulFilesPropertySource.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-config/src/main/java/org/springframework/cloud/consul/config/ConfigWatch.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-config/src/main/java/org/springframework/cloud/consul/config/ConsulConfigAutoConfiguration.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-config/src/main/java/org/springframework/cloud/consul/config/ConsulConfigBootstrapConfiguration.java
diff --git a/spring-cloud-consul-config/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst b/spring-cloud-consul-config/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst
deleted file mode 100644
index aee03f9f..00000000
--- a/spring-cloud-consul-config/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst
+++ /dev/null
@@ -1,8 +0,0 @@
-org/springframework/cloud/consul/config/ConsulPropertySourceLocatorFilesTests$Config.class
-org/springframework/cloud/consul/config/ConsulPropertySourceLocatorTests.class
-org/springframework/cloud/consul/config/ConsulPropertySourceLocatorTests$TestRefreshEndpoint.class
-org/springframework/cloud/consul/config/ConsulPropertySourceLocatorTests$Config.class
-org/springframework/cloud/consul/config/ConsulPropertySourceLocatorFailFastTests$Config.class
-org/springframework/cloud/consul/config/ConsulPropertySourceTests.class
-org/springframework/cloud/consul/config/ConsulPropertySourceLocatorFailFastTests.class
-org/springframework/cloud/consul/config/ConsulPropertySourceLocatorFilesTests.class
diff --git a/spring-cloud-consul-config/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/spring-cloud-consul-config/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst
deleted file mode 100644
index 5624e7a5..00000000
--- a/spring-cloud-consul-config/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst
+++ /dev/null
@@ -1,4 +0,0 @@
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-config/src/test/java/org/springframework/cloud/consul/config/ConsulPropertySourceTests.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-config/src/test/java/org/springframework/cloud/consul/config/ConsulPropertySourceLocatorTests.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-config/src/test/java/org/springframework/cloud/consul/config/ConsulPropertySourceLocatorFilesTests.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-config/src/test/java/org/springframework/cloud/consul/config/ConsulPropertySourceLocatorFailFastTests.java
diff --git a/spring-cloud-consul-config/target/spring-cloud-consul-config-1.1.0.BUILD-SNAPSHOT-javadoc.jar b/spring-cloud-consul-config/target/spring-cloud-consul-config-1.1.0.BUILD-SNAPSHOT-javadoc.jar
deleted file mode 100644
index c1296e3e..00000000
Binary files a/spring-cloud-consul-config/target/spring-cloud-consul-config-1.1.0.BUILD-SNAPSHOT-javadoc.jar and /dev/null differ
diff --git a/spring-cloud-consul-config/target/spring-cloud-consul-config-1.1.0.BUILD-SNAPSHOT-sources.jar b/spring-cloud-consul-config/target/spring-cloud-consul-config-1.1.0.BUILD-SNAPSHOT-sources.jar
deleted file mode 100644
index 1971c615..00000000
Binary files a/spring-cloud-consul-config/target/spring-cloud-consul-config-1.1.0.BUILD-SNAPSHOT-sources.jar and /dev/null differ
diff --git a/spring-cloud-consul-config/target/spring-cloud-consul-config-1.1.0.BUILD-SNAPSHOT.jar b/spring-cloud-consul-config/target/spring-cloud-consul-config-1.1.0.BUILD-SNAPSHOT.jar
deleted file mode 100644
index 09e57c7c..00000000
Binary files a/spring-cloud-consul-config/target/spring-cloud-consul-config-1.1.0.BUILD-SNAPSHOT.jar and /dev/null differ
diff --git a/spring-cloud-consul-config/target/spring-cloud-consul-config-1.1.0.RELEASE-javadoc.jar b/spring-cloud-consul-config/target/spring-cloud-consul-config-1.1.0.RELEASE-javadoc.jar
deleted file mode 100644
index 3b76c3a8..00000000
Binary files a/spring-cloud-consul-config/target/spring-cloud-consul-config-1.1.0.RELEASE-javadoc.jar and /dev/null differ
diff --git a/spring-cloud-consul-config/target/spring-cloud-consul-config-1.1.0.RELEASE-sources.jar b/spring-cloud-consul-config/target/spring-cloud-consul-config-1.1.0.RELEASE-sources.jar
deleted file mode 100644
index a23f45d7..00000000
Binary files a/spring-cloud-consul-config/target/spring-cloud-consul-config-1.1.0.RELEASE-sources.jar and /dev/null differ
diff --git a/spring-cloud-consul-config/target/spring-cloud-consul-config-1.1.0.RELEASE.jar b/spring-cloud-consul-config/target/spring-cloud-consul-config-1.1.0.RELEASE.jar
deleted file mode 100644
index e088bc44..00000000
Binary files a/spring-cloud-consul-config/target/spring-cloud-consul-config-1.1.0.RELEASE.jar and /dev/null differ
diff --git a/spring-cloud-consul-config/target/spring-cloud-consul-config-1.1.1.BUILD-SNAPSHOT-javadoc.jar b/spring-cloud-consul-config/target/spring-cloud-consul-config-1.1.1.BUILD-SNAPSHOT-javadoc.jar
deleted file mode 100644
index d9730f66..00000000
Binary files a/spring-cloud-consul-config/target/spring-cloud-consul-config-1.1.1.BUILD-SNAPSHOT-javadoc.jar and /dev/null differ
diff --git a/spring-cloud-consul-config/target/spring-cloud-consul-config-1.1.1.BUILD-SNAPSHOT-sources.jar b/spring-cloud-consul-config/target/spring-cloud-consul-config-1.1.1.BUILD-SNAPSHOT-sources.jar
deleted file mode 100644
index adc8107d..00000000
Binary files a/spring-cloud-consul-config/target/spring-cloud-consul-config-1.1.1.BUILD-SNAPSHOT-sources.jar and /dev/null differ
diff --git a/spring-cloud-consul-config/target/spring-cloud-consul-config-1.1.1.BUILD-SNAPSHOT.jar b/spring-cloud-consul-config/target/spring-cloud-consul-config-1.1.1.BUILD-SNAPSHOT.jar
deleted file mode 100644
index d070669a..00000000
Binary files a/spring-cloud-consul-config/target/spring-cloud-consul-config-1.1.1.BUILD-SNAPSHOT.jar and /dev/null differ
diff --git a/spring-cloud-consul-config/target/test-classes/org/springframework/cloud/consul/config/ConfigWatchTests.class b/spring-cloud-consul-config/target/test-classes/org/springframework/cloud/consul/config/ConfigWatchTests.class
deleted file mode 100644
index 5cc691a0..00000000
Binary files a/spring-cloud-consul-config/target/test-classes/org/springframework/cloud/consul/config/ConfigWatchTests.class and /dev/null differ
diff --git a/spring-cloud-consul-config/target/test-classes/org/springframework/cloud/consul/config/ConsulPropertySourceLocatorFailFastTests$Config.class b/spring-cloud-consul-config/target/test-classes/org/springframework/cloud/consul/config/ConsulPropertySourceLocatorFailFastTests$Config.class
deleted file mode 100644
index 0a8d19af..00000000
Binary files a/spring-cloud-consul-config/target/test-classes/org/springframework/cloud/consul/config/ConsulPropertySourceLocatorFailFastTests$Config.class and /dev/null differ
diff --git a/spring-cloud-consul-config/target/test-classes/org/springframework/cloud/consul/config/ConsulPropertySourceLocatorFailFastTests.class b/spring-cloud-consul-config/target/test-classes/org/springframework/cloud/consul/config/ConsulPropertySourceLocatorFailFastTests.class
deleted file mode 100644
index fbf8107f..00000000
Binary files a/spring-cloud-consul-config/target/test-classes/org/springframework/cloud/consul/config/ConsulPropertySourceLocatorFailFastTests.class and /dev/null differ
diff --git a/spring-cloud-consul-config/target/test-classes/org/springframework/cloud/consul/config/ConsulPropertySourceLocatorFilesTests$Config.class b/spring-cloud-consul-config/target/test-classes/org/springframework/cloud/consul/config/ConsulPropertySourceLocatorFilesTests$Config.class
deleted file mode 100644
index 4ed82ecd..00000000
Binary files a/spring-cloud-consul-config/target/test-classes/org/springframework/cloud/consul/config/ConsulPropertySourceLocatorFilesTests$Config.class and /dev/null differ
diff --git a/spring-cloud-consul-config/target/test-classes/org/springframework/cloud/consul/config/ConsulPropertySourceLocatorFilesTests.class b/spring-cloud-consul-config/target/test-classes/org/springframework/cloud/consul/config/ConsulPropertySourceLocatorFilesTests.class
deleted file mode 100644
index 64c191fb..00000000
Binary files a/spring-cloud-consul-config/target/test-classes/org/springframework/cloud/consul/config/ConsulPropertySourceLocatorFilesTests.class and /dev/null differ
diff --git a/spring-cloud-consul-config/target/test-classes/org/springframework/cloud/consul/config/ConsulPropertySourceLocatorTests$Config.class b/spring-cloud-consul-config/target/test-classes/org/springframework/cloud/consul/config/ConsulPropertySourceLocatorTests$Config.class
deleted file mode 100644
index e6d98206..00000000
Binary files a/spring-cloud-consul-config/target/test-classes/org/springframework/cloud/consul/config/ConsulPropertySourceLocatorTests$Config.class and /dev/null differ
diff --git a/spring-cloud-consul-config/target/test-classes/org/springframework/cloud/consul/config/ConsulPropertySourceLocatorTests$TestRefreshEndpoint.class b/spring-cloud-consul-config/target/test-classes/org/springframework/cloud/consul/config/ConsulPropertySourceLocatorTests$TestRefreshEndpoint.class
deleted file mode 100644
index 3188e8f0..00000000
Binary files a/spring-cloud-consul-config/target/test-classes/org/springframework/cloud/consul/config/ConsulPropertySourceLocatorTests$TestRefreshEndpoint.class and /dev/null differ
diff --git a/spring-cloud-consul-config/target/test-classes/org/springframework/cloud/consul/config/ConsulPropertySourceLocatorTests.class b/spring-cloud-consul-config/target/test-classes/org/springframework/cloud/consul/config/ConsulPropertySourceLocatorTests.class
deleted file mode 100644
index eeccbcc6..00000000
Binary files a/spring-cloud-consul-config/target/test-classes/org/springframework/cloud/consul/config/ConsulPropertySourceLocatorTests.class and /dev/null differ
diff --git a/spring-cloud-consul-config/target/test-classes/org/springframework/cloud/consul/config/ConsulPropertySourceTests.class b/spring-cloud-consul-config/target/test-classes/org/springframework/cloud/consul/config/ConsulPropertySourceTests.class
deleted file mode 100644
index c3004dd7..00000000
Binary files a/spring-cloud-consul-config/target/test-classes/org/springframework/cloud/consul/config/ConsulPropertySourceTests.class and /dev/null differ
diff --git a/spring-cloud-consul-core/target/apidocs/allclasses-frame.html b/spring-cloud-consul-core/target/apidocs/allclasses-frame.html
deleted file mode 100644
index 3d20519f..00000000
--- a/spring-cloud-consul-core/target/apidocs/allclasses-frame.html
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-All Classes (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-All Classes
-
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/allclasses-noframe.html b/spring-cloud-consul-core/target/apidocs/allclasses-noframe.html
deleted file mode 100644
index 94f1a523..00000000
--- a/spring-cloud-consul-core/target/apidocs/allclasses-noframe.html
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-All Classes (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-All Classes
-
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/constant-values.html b/spring-cloud-consul-core/target/apidocs/constant-values.html
deleted file mode 100644
index c083e57f..00000000
--- a/spring-cloud-consul-core/target/apidocs/constant-values.html
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
-
-
-Constant Field Values (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/deprecated-list.html b/spring-cloud-consul-core/target/apidocs/deprecated-list.html
deleted file mode 100644
index 15ac6126..00000000
--- a/spring-cloud-consul-core/target/apidocs/deprecated-list.html
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
-
-
-Deprecated List (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/help-doc.html b/spring-cloud-consul-core/target/apidocs/help-doc.html
deleted file mode 100644
index f3bcf412..00000000
--- a/spring-cloud-consul-core/target/apidocs/help-doc.html
+++ /dev/null
@@ -1,231 +0,0 @@
-
-
-
-
-
-
-API Help (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-Overview
-The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.
-
-
-Package
-Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:
-
-Interfaces (italic)
-Classes
-Enums
-Exceptions
-Errors
-Annotation Types
-
-
-
-Class/Interface
-Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:
-
-Class inheritance diagram
-Direct Subclasses
-All Known Subinterfaces
-All Known Implementing Classes
-Class/interface declaration
-Class/interface description
-
-
-Nested Class Summary
-Field Summary
-Constructor Summary
-Method Summary
-
-
-Field Detail
-Constructor Detail
-Method Detail
-
-Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.
-
-
-Annotation Type
-Each annotation type has its own separate page with the following sections:
-
-Annotation Type declaration
-Annotation Type description
-Required Element Summary
-Optional Element Summary
-Element Detail
-
-
-
-Enum
-Each enum has its own separate page with the following sections:
-
-Enum declaration
-Enum description
-Enum Constant Summary
-Enum Constant Detail
-
-
-
-Use
-Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.
-
-
-Tree (Class Hierarchy)
-There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.
-
-When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
-When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
-
-
-
-Deprecated API
-The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.
-
-
-Index
-The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.
-
-
-Prev/Next
-These links take you to the next or previous class, interface, package, or related page.
-
-
-Frames/No Frames
-These links show and hide the HTML frames. All pages are available with or without frames.
-
-
-All Classes
-The All Classes link shows all classes and interfaces except non-static nested types.
-
-
-Serialized Form
-Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.
-
-
-Constant Field Values
-The Constant Field Values page lists the static final fields and their values.
-
-
-
This help file applies to API documentation generated using the standard doclet.
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/index-all.html b/spring-cloud-consul-core/target/apidocs/index-all.html
deleted file mode 100644
index ae14b505..00000000
--- a/spring-cloud-consul-core/target/apidocs/index-all.html
+++ /dev/null
@@ -1,242 +0,0 @@
-
-
-
-
-
-
-Index (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-C D G I O R S V
-
-
-
C
-
-ConditionalOnConsulEnabled - Annotation Type in org.springframework.cloud.consul
-
-ConditionalOnConsulEnabled.OnConsulEnabledCondition - Class in org.springframework.cloud.consul
-
-ConsulAutoConfiguration - Class in org.springframework.cloud.consul
-
-ConsulAutoConfiguration() - Constructor for class org.springframework.cloud.consul.ConsulAutoConfiguration
-
-ConsulAutoConfiguration.ConsulHealthConfig - Class in org.springframework.cloud.consul
-
-ConsulAutoConfiguration.RetryConfiguration - Class in org.springframework.cloud.consul
-
-consulClient(ConsulProperties) - Method in class org.springframework.cloud.consul.ConsulAutoConfiguration
-
-ConsulData() - Constructor for class org.springframework.cloud.consul.ConsulEndpoint.ConsulData
-
-consulEndpoint(ConsulClient) - Method in class org.springframework.cloud.consul.ConsulAutoConfiguration.ConsulHealthConfig
-
-ConsulEndpoint - Class in org.springframework.cloud.consul
-
-ConsulEndpoint(ConsulClient) - Constructor for class org.springframework.cloud.consul.ConsulEndpoint
-
-ConsulEndpoint.ConsulData - Class in org.springframework.cloud.consul
-
-ConsulHealthConfig() - Constructor for class org.springframework.cloud.consul.ConsulAutoConfiguration.ConsulHealthConfig
-
-consulHealthIndicator(ConsulClient) - Method in class org.springframework.cloud.consul.ConsulAutoConfiguration.ConsulHealthConfig
-
-ConsulHealthIndicator - Class in org.springframework.cloud.consul
-
-ConsulHealthIndicator(ConsulClient) - Constructor for class org.springframework.cloud.consul.ConsulHealthIndicator
-
-consulProperties() - Method in class org.springframework.cloud.consul.ConsulAutoConfiguration
-
-ConsulProperties - Class in org.springframework.cloud.consul
-
-ConsulProperties() - Constructor for class org.springframework.cloud.consul.ConsulProperties
-
-consulRetryInterceptor(RetryProperties) - Method in class org.springframework.cloud.consul.ConsulAutoConfiguration.RetryConfiguration
-
-
-
-
-
-
D
-
-doHealthCheck(Health.Builder) - Method in class org.springframework.cloud.consul.ConsulHealthIndicator
-
-
-
-
-
-
G
-
-getCode() - Method in enum org.springframework.cloud.consul.model.SerfStatusEnum
-
-
-
-
-
-
I
-
-invoke() - Method in class org.springframework.cloud.consul.ConsulEndpoint
-
-
-
-
-
-
O
-
-OnConsulEnabledCondition() - Constructor for class org.springframework.cloud.consul.ConditionalOnConsulEnabled.OnConsulEnabledCondition
-
-org.springframework.cloud.consul - package org.springframework.cloud.consul
-
-org.springframework.cloud.consul.model - package org.springframework.cloud.consul.model
-
-
-
-
-
-
R
-
-RetryConfiguration() - Constructor for class org.springframework.cloud.consul.ConsulAutoConfiguration.RetryConfiguration
-
-RetryProperties - Class in org.springframework.cloud.consul
-
-RetryProperties() - Constructor for class org.springframework.cloud.consul.RetryProperties
-
-
-
-
-
-
S
-
-SerfStatusEnum - Enum in org.springframework.cloud.consul.model
-
-Gossip pool (serf) statuses.
-
-
-
-
-
-
V
-
-valueOf(String) - Static method in enum org.springframework.cloud.consul.model.SerfStatusEnum
-
-Returns the enum constant of this type with the specified name.
-
-values() - Static method in enum org.springframework.cloud.consul.model.SerfStatusEnum
-
-Returns an array containing the constants of this enum type, in
-the order they are declared.
-
-
-
C D G I O R S V
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/index.html b/spring-cloud-consul-core/target/apidocs/index.html
deleted file mode 100644
index 6d90e37f..00000000
--- a/spring-cloud-consul-core/target/apidocs/index.html
+++ /dev/null
@@ -1,75 +0,0 @@
-
-
-
-
-
-
-Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-Frame Alert
-This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to Non-frame version .
-
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/ConditionalOnConsulEnabled.OnConsulEnabledCondition.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/ConditionalOnConsulEnabled.OnConsulEnabledCondition.html
deleted file mode 100644
index 7a05f496..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/ConditionalOnConsulEnabled.OnConsulEnabledCondition.html
+++ /dev/null
@@ -1,304 +0,0 @@
-
-
-
-
-
-
-ConditionalOnConsulEnabled.OnConsulEnabledCondition (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.boot.autoconfigure.condition.SpringBootCondition
-
-
-org.springframework.boot.autoconfigure.condition.AllNestedConditions
-
-
-org.springframework.cloud.consul.ConditionalOnConsulEnabled.OnConsulEnabledCondition
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-Nested Classes
-
-Modifier and Type
-Class and Description
-
-
-protected static class
-org.springframework.boot.autoconfigure.condition.AbstractNestedCondition.MemberMatchOutcomes
-
-
-
-
-
-
-Nested classes/interfaces inherited from interface org.springframework.context.annotation.ConfigurationCondition
-org.springframework.context.annotation.ConfigurationCondition.ConfigurationPhase
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class org.springframework.boot.autoconfigure.condition.AllNestedConditions
-getFinalMatchOutcome
-
-
-
-
-
-Methods inherited from class org.springframework.boot.autoconfigure.condition.SpringBootCondition
-anyMatches, matches, matches
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-Methods inherited from interface org.springframework.context.annotation.Condition
-matches
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/ConditionalOnConsulEnabled.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/ConditionalOnConsulEnabled.html
deleted file mode 100644
index 3c783d78..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/ConditionalOnConsulEnabled.html
+++ /dev/null
@@ -1,167 +0,0 @@
-
-
-
-
-
-
-ConditionalOnConsulEnabled (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Field |
-Required |
-Optional
-
-
-Detail:
-Field |
-Element
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Field |
-Required |
-Optional
-
-
-Detail:
-Field |
-Element
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/ConsulAutoConfiguration.ConsulHealthConfig.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/ConsulAutoConfiguration.ConsulHealthConfig.html
deleted file mode 100644
index af941629..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/ConsulAutoConfiguration.ConsulHealthConfig.html
+++ /dev/null
@@ -1,298 +0,0 @@
-
-
-
-
-
-
-ConsulAutoConfiguration.ConsulHealthConfig (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.ConsulAutoConfiguration.ConsulHealthConfig
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Modifier
-Constructor and Description
-
-
-protected
-ConsulHealthConfig ()
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/ConsulAutoConfiguration.RetryConfiguration.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/ConsulAutoConfiguration.RetryConfiguration.html
deleted file mode 100644
index 3802047a..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/ConsulAutoConfiguration.RetryConfiguration.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-
-ConsulAutoConfiguration.RetryConfiguration (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.ConsulAutoConfiguration.RetryConfiguration
-
-
-
-
-
-
-
-Enclosing class:
-ConsulAutoConfiguration
-
-
-
-@ConditionalOnClass(value={org.springframework.retry.annotation.Retryable.class,org.aspectj.lang.annotation.Aspect.class,org.springframework.boot.autoconfigure.aop.AopAutoConfiguration.class})
- @Configuration
- @EnableRetry(proxyTargetClass=true)
- @Import(value=org.springframework.boot.autoconfigure.aop.AopAutoConfiguration.class)
- @EnableConfigurationProperties(value=RetryProperties.class )
-protected static class ConsulAutoConfiguration.RetryConfiguration
-extends Object
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Modifier
-Constructor and Description
-
-
-protected
-RetryConfiguration ()
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/ConsulAutoConfiguration.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/ConsulAutoConfiguration.html
deleted file mode 100644
index b3cbd511..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/ConsulAutoConfiguration.html
+++ /dev/null
@@ -1,319 +0,0 @@
-
-
-
-
-
-
-ConsulAutoConfiguration (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.ConsulAutoConfiguration
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/ConsulEndpoint.ConsulData.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/ConsulEndpoint.ConsulData.html
deleted file mode 100644
index 6f2847c6..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/ConsulEndpoint.ConsulData.html
+++ /dev/null
@@ -1,243 +0,0 @@
-
-
-
-
-
-
-ConsulEndpoint.ConsulData (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.ConsulEndpoint.ConsulData
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-ConsulData ()
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-ConsulData
-public ConsulData()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/ConsulEndpoint.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/ConsulEndpoint.html
deleted file mode 100644
index 981c8b17..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/ConsulEndpoint.html
+++ /dev/null
@@ -1,314 +0,0 @@
-
-
-
-
-
-
-ConsulEndpoint (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-ConsulEndpoint (com.ecwid.consul.v1.ConsulClient consul)
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class org.springframework.boot.actuate.endpoint.AbstractEndpoint
-getEnvironment, getId, isEnabled, isSensitive, setEnabled, setEnvironment, setId, setSensitive
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/ConsulHealthIndicator.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/ConsulHealthIndicator.html
deleted file mode 100644
index e58e1f8a..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/ConsulHealthIndicator.html
+++ /dev/null
@@ -1,300 +0,0 @@
-
-
-
-
-
-
-ConsulHealthIndicator (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.boot.actuate.health.AbstractHealthIndicator
-
-
-org.springframework.cloud.consul.ConsulHealthIndicator
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-ConsulHealthIndicator (com.ecwid.consul.v1.ConsulClient consul)
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class org.springframework.boot.actuate.health.AbstractHealthIndicator
-health
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/ConsulProperties.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/ConsulProperties.html
deleted file mode 100644
index 84046bdf..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/ConsulProperties.html
+++ /dev/null
@@ -1,244 +0,0 @@
-
-
-
-
-
-
-ConsulProperties (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/RetryProperties.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/RetryProperties.html
deleted file mode 100644
index 52a2e71a..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/RetryProperties.html
+++ /dev/null
@@ -1,244 +0,0 @@
-
-
-
-
-
-
-RetryProperties (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-RetryProperties
-public RetryProperties()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/ConditionalOnConsulEnabled.OnConsulEnabledCondition.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/ConditionalOnConsulEnabled.OnConsulEnabledCondition.html
deleted file mode 100644
index 95d9eaf3..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/ConditionalOnConsulEnabled.OnConsulEnabledCondition.html
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.ConditionalOnConsulEnabled.OnConsulEnabledCondition (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of org.springframework.cloud.consul.ConditionalOnConsulEnabled.OnConsulEnabledCondition
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/ConditionalOnConsulEnabled.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/ConditionalOnConsulEnabled.html
deleted file mode 100644
index 9e44698a..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/ConditionalOnConsulEnabled.html
+++ /dev/null
@@ -1,166 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.ConditionalOnConsulEnabled (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/ConsulAutoConfiguration.ConsulHealthConfig.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/ConsulAutoConfiguration.ConsulHealthConfig.html
deleted file mode 100644
index 54ff1db3..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/ConsulAutoConfiguration.ConsulHealthConfig.html
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.ConsulAutoConfiguration.ConsulHealthConfig (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of org.springframework.cloud.consul.ConsulAutoConfiguration.ConsulHealthConfig
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/ConsulAutoConfiguration.RetryConfiguration.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/ConsulAutoConfiguration.RetryConfiguration.html
deleted file mode 100644
index 3784a602..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/ConsulAutoConfiguration.RetryConfiguration.html
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.ConsulAutoConfiguration.RetryConfiguration (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of org.springframework.cloud.consul.ConsulAutoConfiguration.RetryConfiguration
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/ConsulAutoConfiguration.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/ConsulAutoConfiguration.html
deleted file mode 100644
index 97b90d8f..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/ConsulAutoConfiguration.html
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.ConsulAutoConfiguration (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of org.springframework.cloud.consul.ConsulAutoConfiguration
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/ConsulEndpoint.ConsulData.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/ConsulEndpoint.ConsulData.html
deleted file mode 100644
index eb39132e..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/ConsulEndpoint.ConsulData.html
+++ /dev/null
@@ -1,166 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.ConsulEndpoint.ConsulData (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/ConsulEndpoint.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/ConsulEndpoint.html
deleted file mode 100644
index defede88..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/ConsulEndpoint.html
+++ /dev/null
@@ -1,166 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.ConsulEndpoint (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/ConsulHealthIndicator.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/ConsulHealthIndicator.html
deleted file mode 100644
index 0e5c76d1..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/ConsulHealthIndicator.html
+++ /dev/null
@@ -1,166 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.ConsulHealthIndicator (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/ConsulProperties.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/ConsulProperties.html
deleted file mode 100644
index 0a4e4f0b..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/ConsulProperties.html
+++ /dev/null
@@ -1,179 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.ConsulProperties (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/RetryProperties.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/RetryProperties.html
deleted file mode 100644
index 2b72c9b2..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/class-use/RetryProperties.html
+++ /dev/null
@@ -1,166 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.RetryProperties (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/model/SerfStatusEnum.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/model/SerfStatusEnum.html
deleted file mode 100644
index 636c5e2d..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/model/SerfStatusEnum.html
+++ /dev/null
@@ -1,381 +0,0 @@
-
-
-
-
-
-
-SerfStatusEnum (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-Prev Class
-Next Class
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Enum Constant Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-valueOf
-public static SerfStatusEnum valueOf(String name)
-Returns the enum constant of this type with the specified name.
-The string must match exactly an identifier used to declare an
-enum constant in this type. (Extraneous whitespace characters are
-not permitted.)
-
-Parameters:
-name - the name of the enum constant to be returned.
-Returns:
-the enum constant with the specified name
-Throws:
-IllegalArgumentException - if this enum type has no constant with the specified name
-NullPointerException - if the argument is null
-
-
-
-
-
-
-
-
-getCode
-public int getCode()
-
-
-
-
-
-
-
-
-
-
-
-
-
-Prev Class
-Next Class
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/model/class-use/SerfStatusEnum.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/model/class-use/SerfStatusEnum.html
deleted file mode 100644
index 4b8e5685..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/model/class-use/SerfStatusEnum.html
+++ /dev/null
@@ -1,175 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.model.SerfStatusEnum (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/model/package-frame.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/model/package-frame.html
deleted file mode 100644
index b365f08a..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/model/package-frame.html
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-org.springframework.cloud.consul.model (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/model/package-summary.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/model/package-summary.html
deleted file mode 100644
index 3c370892..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/model/package-summary.html
+++ /dev/null
@@ -1,146 +0,0 @@
-
-
-
-
-
-
-org.springframework.cloud.consul.model (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Enum Summary
-
-Enum
-Description
-
-
-
-SerfStatusEnum
-
-Gossip pool (serf) statuses.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/model/package-tree.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/model/package-tree.html
deleted file mode 100644
index da7393cc..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/model/package-tree.html
+++ /dev/null
@@ -1,143 +0,0 @@
-
-
-
-
-
-
-org.springframework.cloud.consul.model Class Hierarchy (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/model/package-use.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/model/package-use.html
deleted file mode 100644
index 4f25d8b8..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/model/package-use.html
+++ /dev/null
@@ -1,161 +0,0 @@
-
-
-
-
-
-
-Uses of Package org.springframework.cloud.consul.model (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/package-frame.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/package-frame.html
deleted file mode 100644
index 510782fe..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/package-frame.html
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
-
-
-org.springframework.cloud.consul (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-
Classes
-
-
Annotation Types
-
-
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/package-summary.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/package-summary.html
deleted file mode 100644
index f134f6cd..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/package-summary.html
+++ /dev/null
@@ -1,191 +0,0 @@
-
-
-
-
-
-
-org.springframework.cloud.consul (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/package-tree.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/package-tree.html
deleted file mode 100644
index 6cc0e9fd..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/package-tree.html
+++ /dev/null
@@ -1,167 +0,0 @@
-
-
-
-
-
-
-org.springframework.cloud.consul Class Hierarchy (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
Class Hierarchy
-
-java.lang.Object
-
-org.springframework.boot.actuate.endpoint.AbstractEndpoint<T> (implements org.springframework.boot.actuate.endpoint.Endpoint<T>, org.springframework.context.EnvironmentAware)
-
-
-org.springframework.boot.actuate.health.AbstractHealthIndicator (implements org.springframework.boot.actuate.health.HealthIndicator)
-
-
-org.springframework.cloud.consul.ConsulAutoConfiguration
-org.springframework.cloud.consul.ConsulAutoConfiguration.ConsulHealthConfig
-org.springframework.cloud.consul.ConsulAutoConfiguration.RetryConfiguration
-org.springframework.cloud.consul.ConsulEndpoint.ConsulData
-org.springframework.cloud.consul.ConsulProperties
-org.springframework.cloud.consul.RetryProperties
-org.springframework.boot.autoconfigure.condition.SpringBootCondition (implements org.springframework.context.annotation.Condition)
-
-org.springframework.boot.autoconfigure.condition.AllNestedConditions
-
-
-
-
-
-
-
-
Annotation Type Hierarchy
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/package-use.html b/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/package-use.html
deleted file mode 100644
index 53934fbf..00000000
--- a/spring-cloud-consul-core/target/apidocs/org/springframework/cloud/consul/package-use.html
+++ /dev/null
@@ -1,174 +0,0 @@
-
-
-
-
-
-
-Uses of Package org.springframework.cloud.consul (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/overview-frame.html b/spring-cloud-consul-core/target/apidocs/overview-frame.html
deleted file mode 100644
index d6f24365..00000000
--- a/spring-cloud-consul-core/target/apidocs/overview-frame.html
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-Overview List (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/overview-summary.html b/spring-cloud-consul-core/target/apidocs/overview-summary.html
deleted file mode 100644
index 806797e7..00000000
--- a/spring-cloud-consul-core/target/apidocs/overview-summary.html
+++ /dev/null
@@ -1,144 +0,0 @@
-
-
-
-
-
-
-Overview (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/overview-tree.html b/spring-cloud-consul-core/target/apidocs/overview-tree.html
deleted file mode 100644
index 33768d89..00000000
--- a/spring-cloud-consul-core/target/apidocs/overview-tree.html
+++ /dev/null
@@ -1,180 +0,0 @@
-
-
-
-
-
-
-Class Hierarchy (Spring Cloud Consul Core 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
Class Hierarchy
-
-java.lang.Object
-
-org.springframework.boot.actuate.endpoint.AbstractEndpoint<T> (implements org.springframework.boot.actuate.endpoint.Endpoint<T>, org.springframework.context.EnvironmentAware)
-
-
-org.springframework.boot.actuate.health.AbstractHealthIndicator (implements org.springframework.boot.actuate.health.HealthIndicator)
-
-
-org.springframework.cloud.consul.ConsulAutoConfiguration
-org.springframework.cloud.consul.ConsulAutoConfiguration.ConsulHealthConfig
-org.springframework.cloud.consul.ConsulAutoConfiguration.RetryConfiguration
-org.springframework.cloud.consul.ConsulEndpoint.ConsulData
-org.springframework.cloud.consul.ConsulProperties
-org.springframework.cloud.consul.RetryProperties
-org.springframework.boot.autoconfigure.condition.SpringBootCondition (implements org.springframework.context.annotation.Condition)
-
-org.springframework.boot.autoconfigure.condition.AllNestedConditions
-
-
-
-
-
-
-
-
Annotation Type Hierarchy
-
-
Enum Hierarchy
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-core/target/apidocs/package-list b/spring-cloud-consul-core/target/apidocs/package-list
deleted file mode 100644
index 74b15b45..00000000
--- a/spring-cloud-consul-core/target/apidocs/package-list
+++ /dev/null
@@ -1,2 +0,0 @@
-org.springframework.cloud.consul
-org.springframework.cloud.consul.model
diff --git a/spring-cloud-consul-core/target/apidocs/script.js b/spring-cloud-consul-core/target/apidocs/script.js
deleted file mode 100644
index b3463569..00000000
--- a/spring-cloud-consul-core/target/apidocs/script.js
+++ /dev/null
@@ -1,30 +0,0 @@
-function show(type)
-{
- count = 0;
- for (var key in methods) {
- var row = document.getElementById(key);
- if ((methods[key] & type) != 0) {
- row.style.display = '';
- row.className = (count++ % 2) ? rowColor : altColor;
- }
- else
- row.style.display = 'none';
- }
- updateTabs(type);
-}
-
-function updateTabs(type)
-{
- for (var value in tabs) {
- var sNode = document.getElementById(tabs[value][0]);
- var spanNode = sNode.firstChild;
- if (value == type) {
- sNode.className = activeTableTab;
- spanNode.innerHTML = tabs[value][1];
- }
- else {
- sNode.className = tableTab;
- spanNode.innerHTML = "" + tabs[value][1] + " ";
- }
- }
-}
diff --git a/spring-cloud-consul-core/target/apidocs/stylesheet.css b/spring-cloud-consul-core/target/apidocs/stylesheet.css
deleted file mode 100644
index 98055b22..00000000
--- a/spring-cloud-consul-core/target/apidocs/stylesheet.css
+++ /dev/null
@@ -1,574 +0,0 @@
-/* Javadoc style sheet */
-/*
-Overall document style
-*/
-
-@import url('resources/fonts/dejavu.css');
-
-body {
- background-color:#ffffff;
- color:#353833;
- font-family:'DejaVu Sans', Arial, Helvetica, sans-serif;
- font-size:14px;
- margin:0;
-}
-a:link, a:visited {
- text-decoration:none;
- color:#4A6782;
-}
-a:hover, a:focus {
- text-decoration:none;
- color:#bb7a2a;
-}
-a:active {
- text-decoration:none;
- color:#4A6782;
-}
-a[name] {
- color:#353833;
-}
-a[name]:hover {
- text-decoration:none;
- color:#353833;
-}
-pre {
- font-family:'DejaVu Sans Mono', monospace;
- font-size:14px;
-}
-h1 {
- font-size:20px;
-}
-h2 {
- font-size:18px;
-}
-h3 {
- font-size:16px;
- font-style:italic;
-}
-h4 {
- font-size:13px;
-}
-h5 {
- font-size:12px;
-}
-h6 {
- font-size:11px;
-}
-ul {
- list-style-type:disc;
-}
-code, tt {
- font-family:'DejaVu Sans Mono', monospace;
- font-size:14px;
- padding-top:4px;
- margin-top:8px;
- line-height:1.4em;
-}
-dt code {
- font-family:'DejaVu Sans Mono', monospace;
- font-size:14px;
- padding-top:4px;
-}
-table tr td dt code {
- font-family:'DejaVu Sans Mono', monospace;
- font-size:14px;
- vertical-align:top;
- padding-top:4px;
-}
-sup {
- font-size:8px;
-}
-/*
-Document title and Copyright styles
-*/
-.clear {
- clear:both;
- height:0px;
- overflow:hidden;
-}
-.aboutLanguage {
- float:right;
- padding:0px 21px;
- font-size:11px;
- z-index:200;
- margin-top:-9px;
-}
-.legalCopy {
- margin-left:.5em;
-}
-.bar a, .bar a:link, .bar a:visited, .bar a:active {
- color:#FFFFFF;
- text-decoration:none;
-}
-.bar a:hover, .bar a:focus {
- color:#bb7a2a;
-}
-.tab {
- background-color:#0066FF;
- color:#ffffff;
- padding:8px;
- width:5em;
- font-weight:bold;
-}
-/*
-Navigation bar styles
-*/
-.bar {
- background-color:#4D7A97;
- color:#FFFFFF;
- padding:.8em .5em .4em .8em;
- height:auto;/*height:1.8em;*/
- font-size:11px;
- margin:0;
-}
-.topNav {
- background-color:#4D7A97;
- color:#FFFFFF;
- float:left;
- padding:0;
- width:100%;
- clear:right;
- height:2.8em;
- padding-top:10px;
- overflow:hidden;
- font-size:12px;
-}
-.bottomNav {
- margin-top:10px;
- background-color:#4D7A97;
- color:#FFFFFF;
- float:left;
- padding:0;
- width:100%;
- clear:right;
- height:2.8em;
- padding-top:10px;
- overflow:hidden;
- font-size:12px;
-}
-.subNav {
- background-color:#dee3e9;
- float:left;
- width:100%;
- overflow:hidden;
- font-size:12px;
-}
-.subNav div {
- clear:left;
- float:left;
- padding:0 0 5px 6px;
- text-transform:uppercase;
-}
-ul.navList, ul.subNavList {
- float:left;
- margin:0 25px 0 0;
- padding:0;
-}
-ul.navList li{
- list-style:none;
- float:left;
- padding: 5px 6px;
- text-transform:uppercase;
-}
-ul.subNavList li{
- list-style:none;
- float:left;
-}
-.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited {
- color:#FFFFFF;
- text-decoration:none;
- text-transform:uppercase;
-}
-.topNav a:hover, .bottomNav a:hover {
- text-decoration:none;
- color:#bb7a2a;
- text-transform:uppercase;
-}
-.navBarCell1Rev {
- background-color:#F8981D;
- color:#253441;
- margin: auto 5px;
-}
-.skipNav {
- position:absolute;
- top:auto;
- left:-9999px;
- overflow:hidden;
-}
-/*
-Page header and footer styles
-*/
-.header, .footer {
- clear:both;
- margin:0 20px;
- padding:5px 0 0 0;
-}
-.indexHeader {
- margin:10px;
- position:relative;
-}
-.indexHeader span{
- margin-right:15px;
-}
-.indexHeader h1 {
- font-size:13px;
-}
-.title {
- color:#2c4557;
- margin:10px 0;
-}
-.subTitle {
- margin:5px 0 0 0;
-}
-.header ul {
- margin:0 0 15px 0;
- padding:0;
-}
-.footer ul {
- margin:20px 0 5px 0;
-}
-.header ul li, .footer ul li {
- list-style:none;
- font-size:13px;
-}
-/*
-Heading styles
-*/
-div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 {
- background-color:#dee3e9;
- border:1px solid #d0d9e0;
- margin:0 0 6px -8px;
- padding:7px 5px;
-}
-ul.blockList ul.blockList ul.blockList li.blockList h3 {
- background-color:#dee3e9;
- border:1px solid #d0d9e0;
- margin:0 0 6px -8px;
- padding:7px 5px;
-}
-ul.blockList ul.blockList li.blockList h3 {
- padding:0;
- margin:15px 0;
-}
-ul.blockList li.blockList h2 {
- padding:0px 0 20px 0;
-}
-/*
-Page layout container styles
-*/
-.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer {
- clear:both;
- padding:10px 20px;
- position:relative;
-}
-.indexContainer {
- margin:10px;
- position:relative;
- font-size:12px;
-}
-.indexContainer h2 {
- font-size:13px;
- padding:0 0 3px 0;
-}
-.indexContainer ul {
- margin:0;
- padding:0;
-}
-.indexContainer ul li {
- list-style:none;
- padding-top:2px;
-}
-.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt {
- font-size:12px;
- font-weight:bold;
- margin:10px 0 0 0;
- color:#4E4E4E;
-}
-.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd {
- margin:5px 0 10px 0px;
- font-size:14px;
- font-family:'DejaVu Sans Mono',monospace;
-}
-.serializedFormContainer dl.nameValue dt {
- margin-left:1px;
- font-size:1.1em;
- display:inline;
- font-weight:bold;
-}
-.serializedFormContainer dl.nameValue dd {
- margin:0 0 0 1px;
- font-size:1.1em;
- display:inline;
-}
-/*
-List styles
-*/
-ul.horizontal li {
- display:inline;
- font-size:0.9em;
-}
-ul.inheritance {
- margin:0;
- padding:0;
-}
-ul.inheritance li {
- display:inline;
- list-style:none;
-}
-ul.inheritance li ul.inheritance {
- margin-left:15px;
- padding-left:15px;
- padding-top:1px;
-}
-ul.blockList, ul.blockListLast {
- margin:10px 0 10px 0;
- padding:0;
-}
-ul.blockList li.blockList, ul.blockListLast li.blockList {
- list-style:none;
- margin-bottom:15px;
- line-height:1.4;
-}
-ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList {
- padding:0px 20px 5px 10px;
- border:1px solid #ededed;
- background-color:#f8f8f8;
-}
-ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList {
- padding:0 0 5px 8px;
- background-color:#ffffff;
- border:none;
-}
-ul.blockList ul.blockList ul.blockList ul.blockList li.blockList {
- margin-left:0;
- padding-left:0;
- padding-bottom:15px;
- border:none;
-}
-ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast {
- list-style:none;
- border-bottom:none;
- padding-bottom:0;
-}
-table tr td dl, table tr td dl dt, table tr td dl dd {
- margin-top:0;
- margin-bottom:1px;
-}
-/*
-Table styles
-*/
-.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary {
- width:100%;
- border-left:1px solid #EEE;
- border-right:1px solid #EEE;
- border-bottom:1px solid #EEE;
-}
-.overviewSummary, .memberSummary {
- padding:0px;
-}
-.overviewSummary caption, .memberSummary caption, .typeSummary caption,
-.useSummary caption, .constantsSummary caption, .deprecatedSummary caption {
- position:relative;
- text-align:left;
- background-repeat:no-repeat;
- color:#253441;
- font-weight:bold;
- clear:none;
- overflow:hidden;
- padding:0px;
- padding-top:10px;
- padding-left:1px;
- margin:0px;
- white-space:pre;
-}
-.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link,
-.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link,
-.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover,
-.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover,
-.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active,
-.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active,
-.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited,
-.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited {
- color:#FFFFFF;
-}
-.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span,
-.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span {
- white-space:nowrap;
- padding-top:5px;
- padding-left:12px;
- padding-right:12px;
- padding-bottom:7px;
- display:inline-block;
- float:left;
- background-color:#F8981D;
- border: none;
- height:16px;
-}
-.memberSummary caption span.activeTableTab span {
- white-space:nowrap;
- padding-top:5px;
- padding-left:12px;
- padding-right:12px;
- margin-right:3px;
- display:inline-block;
- float:left;
- background-color:#F8981D;
- height:16px;
-}
-.memberSummary caption span.tableTab span {
- white-space:nowrap;
- padding-top:5px;
- padding-left:12px;
- padding-right:12px;
- margin-right:3px;
- display:inline-block;
- float:left;
- background-color:#4D7A97;
- height:16px;
-}
-.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab {
- padding-top:0px;
- padding-left:0px;
- padding-right:0px;
- background-image:none;
- float:none;
- display:inline;
-}
-.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd,
-.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd {
- display:none;
- width:5px;
- position:relative;
- float:left;
- background-color:#F8981D;
-}
-.memberSummary .activeTableTab .tabEnd {
- display:none;
- width:5px;
- margin-right:3px;
- position:relative;
- float:left;
- background-color:#F8981D;
-}
-.memberSummary .tableTab .tabEnd {
- display:none;
- width:5px;
- margin-right:3px;
- position:relative;
- background-color:#4D7A97;
- float:left;
-
-}
-.overviewSummary td, .memberSummary td, .typeSummary td,
-.useSummary td, .constantsSummary td, .deprecatedSummary td {
- text-align:left;
- padding:0px 0px 12px 10px;
-}
-th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th,
-td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{
- vertical-align:top;
- padding-right:0px;
- padding-top:8px;
- padding-bottom:3px;
-}
-th.colFirst, th.colLast, th.colOne, .constantsSummary th {
- background:#dee3e9;
- text-align:left;
- padding:8px 3px 3px 7px;
-}
-td.colFirst, th.colFirst {
- white-space:nowrap;
- font-size:13px;
-}
-td.colLast, th.colLast {
- font-size:13px;
-}
-td.colOne, th.colOne {
- font-size:13px;
-}
-.overviewSummary td.colFirst, .overviewSummary th.colFirst,
-.useSummary td.colFirst, .useSummary th.colFirst,
-.overviewSummary td.colOne, .overviewSummary th.colOne,
-.memberSummary td.colFirst, .memberSummary th.colFirst,
-.memberSummary td.colOne, .memberSummary th.colOne,
-.typeSummary td.colFirst{
- width:25%;
- vertical-align:top;
-}
-td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover {
- font-weight:bold;
-}
-.tableSubHeadingColor {
- background-color:#EEEEFF;
-}
-.altColor {
- background-color:#FFFFFF;
-}
-.rowColor {
- background-color:#EEEEEF;
-}
-/*
-Content styles
-*/
-.description pre {
- margin-top:0;
-}
-.deprecatedContent {
- margin:0;
- padding:10px 0;
-}
-.docSummary {
- padding:0;
-}
-
-ul.blockList ul.blockList ul.blockList li.blockList h3 {
- font-style:normal;
-}
-
-div.block {
- font-size:14px;
- font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
-}
-
-td.colLast div {
- padding-top:0px;
-}
-
-
-td.colLast a {
- padding-bottom:3px;
-}
-/*
-Formatting effect styles
-*/
-.sourceLineNo {
- color:green;
- padding:0 30px 0 0;
-}
-h1.hidden {
- visibility:hidden;
- overflow:hidden;
- font-size:10px;
-}
-.block {
- display:block;
- margin:3px 10px 2px 0px;
- color:#474747;
-}
-.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink,
-.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel,
-.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink {
- font-weight:bold;
-}
-.deprecationComment, .emphasizedPhrase, .interfaceName {
- font-style:italic;
-}
-
-div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase,
-div.block div.block span.interfaceName {
- font-style:normal;
-}
-
-div.contentContainer ul.blockList li.blockList h2{
- padding-bottom:0px;
-}
diff --git a/spring-cloud-consul-core/target/classes/META-INF/spring-configuration-metadata.json b/spring-cloud-consul-core/target/classes/META-INF/spring-configuration-metadata.json
deleted file mode 100644
index d2b88010..00000000
--- a/spring-cloud-consul-core/target/classes/META-INF/spring-configuration-metadata.json
+++ /dev/null
@@ -1,86 +0,0 @@
-{
- "groups": [
- {
- "name": "endpoints.consul",
- "type": "org.springframework.cloud.consul.ConsulEndpoint",
- "sourceType": "org.springframework.cloud.consul.ConsulEndpoint"
- },
- {
- "name": "spring.cloud.consul",
- "type": "org.springframework.cloud.consul.ConsulProperties",
- "sourceType": "org.springframework.cloud.consul.ConsulProperties"
- },
- {
- "name": "spring.cloud.consul.retry",
- "type": "org.springframework.cloud.consul.RetryProperties",
- "sourceType": "org.springframework.cloud.consul.RetryProperties"
- }
- ],
- "properties": [
- {
- "name": "endpoints.consul.enabled",
- "type": "java.lang.Boolean",
- "sourceType": "org.springframework.cloud.consul.ConsulEndpoint"
- },
- {
- "name": "endpoints.consul.id",
- "type": "java.lang.String",
- "sourceType": "org.springframework.cloud.consul.ConsulEndpoint"
- },
- {
- "name": "endpoints.consul.sensitive",
- "type": "java.lang.Boolean",
- "sourceType": "org.springframework.cloud.consul.ConsulEndpoint"
- },
- {
- "name": "spring.cloud.consul.enabled",
- "type": "java.lang.Boolean",
- "description": "Is spring cloud consul enabled",
- "sourceType": "org.springframework.cloud.consul.ConsulProperties",
- "defaultValue": true
- },
- {
- "name": "spring.cloud.consul.host",
- "type": "java.lang.String",
- "description": "Consul agent hostname. Defaults to 'localhost'.",
- "sourceType": "org.springframework.cloud.consul.ConsulProperties",
- "defaultValue": "localhost"
- },
- {
- "name": "spring.cloud.consul.port",
- "type": "java.lang.Integer",
- "description": "Consul agent port. Defaults to '8500'.",
- "sourceType": "org.springframework.cloud.consul.ConsulProperties",
- "defaultValue": 8500
- },
- {
- "name": "spring.cloud.consul.retry.initial-interval",
- "type": "java.lang.Long",
- "description": "Initial retry interval in milliseconds.",
- "sourceType": "org.springframework.cloud.consul.RetryProperties",
- "defaultValue": 1000
- },
- {
- "name": "spring.cloud.consul.retry.max-attempts",
- "type": "java.lang.Integer",
- "description": "Maximum number of attempts.",
- "sourceType": "org.springframework.cloud.consul.RetryProperties",
- "defaultValue": 6
- },
- {
- "name": "spring.cloud.consul.retry.max-interval",
- "type": "java.lang.Long",
- "description": "Maximum interval for backoff.",
- "sourceType": "org.springframework.cloud.consul.RetryProperties",
- "defaultValue": 2000
- },
- {
- "name": "spring.cloud.consul.retry.multiplier",
- "type": "java.lang.Double",
- "description": "Multiplier for next interval.",
- "sourceType": "org.springframework.cloud.consul.RetryProperties",
- "defaultValue": 1.1
- }
- ],
- "hints": []
-}
\ No newline at end of file
diff --git a/spring-cloud-consul-core/target/classes/META-INF/spring.factories b/spring-cloud-consul-core/target/classes/META-INF/spring.factories
deleted file mode 100644
index 2273bcb2..00000000
--- a/spring-cloud-consul-core/target/classes/META-INF/spring.factories
+++ /dev/null
@@ -1,3 +0,0 @@
-# Auto Configuration
-org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
-org.springframework.cloud.consul.ConsulAutoConfiguration
diff --git a/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConditionalOnConsulEnabled$OnConsulEnabledCondition$FoundClass.class b/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConditionalOnConsulEnabled$OnConsulEnabledCondition$FoundClass.class
deleted file mode 100644
index a8b0aaff..00000000
Binary files a/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConditionalOnConsulEnabled$OnConsulEnabledCondition$FoundClass.class and /dev/null differ
diff --git a/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConditionalOnConsulEnabled$OnConsulEnabledCondition$FoundProperty.class b/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConditionalOnConsulEnabled$OnConsulEnabledCondition$FoundProperty.class
deleted file mode 100644
index 73407b2f..00000000
Binary files a/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConditionalOnConsulEnabled$OnConsulEnabledCondition$FoundProperty.class and /dev/null differ
diff --git a/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConditionalOnConsulEnabled$OnConsulEnabledCondition.class b/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConditionalOnConsulEnabled$OnConsulEnabledCondition.class
deleted file mode 100644
index a319c1a6..00000000
Binary files a/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConditionalOnConsulEnabled$OnConsulEnabledCondition.class and /dev/null differ
diff --git a/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConditionalOnConsulEnabled.class b/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConditionalOnConsulEnabled.class
deleted file mode 100644
index 95643d6c..00000000
Binary files a/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConditionalOnConsulEnabled.class and /dev/null differ
diff --git a/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConsulAutoConfiguration$ConsulHealthConfig.class b/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConsulAutoConfiguration$ConsulHealthConfig.class
deleted file mode 100644
index 657a38a9..00000000
Binary files a/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConsulAutoConfiguration$ConsulHealthConfig.class and /dev/null differ
diff --git a/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConsulAutoConfiguration$RetryConfiguration.class b/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConsulAutoConfiguration$RetryConfiguration.class
deleted file mode 100644
index 32dce9e7..00000000
Binary files a/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConsulAutoConfiguration$RetryConfiguration.class and /dev/null differ
diff --git a/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConsulAutoConfiguration.class b/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConsulAutoConfiguration.class
deleted file mode 100644
index 1f0e1bb6..00000000
Binary files a/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConsulAutoConfiguration.class and /dev/null differ
diff --git a/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConsulEndpoint$ConsulData.class b/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConsulEndpoint$ConsulData.class
deleted file mode 100644
index 2014f64f..00000000
Binary files a/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConsulEndpoint$ConsulData.class and /dev/null differ
diff --git a/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConsulEndpoint.class b/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConsulEndpoint.class
deleted file mode 100644
index 0d1f7d8e..00000000
Binary files a/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConsulEndpoint.class and /dev/null differ
diff --git a/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConsulHealthIndicator.class b/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConsulHealthIndicator.class
deleted file mode 100644
index cd588af0..00000000
Binary files a/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConsulHealthIndicator.class and /dev/null differ
diff --git a/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConsulProperties.class b/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConsulProperties.class
deleted file mode 100644
index a55d3039..00000000
Binary files a/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/ConsulProperties.class and /dev/null differ
diff --git a/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/RetryProperties.class b/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/RetryProperties.class
deleted file mode 100644
index 1b5a06e0..00000000
Binary files a/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/RetryProperties.class and /dev/null differ
diff --git a/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/model/SerfStatusEnum.class b/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/model/SerfStatusEnum.class
deleted file mode 100644
index d2282f62..00000000
Binary files a/spring-cloud-consul-core/target/classes/org/springframework/cloud/consul/model/SerfStatusEnum.class and /dev/null differ
diff --git a/spring-cloud-consul-core/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml b/spring-cloud-consul-core/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml
deleted file mode 100644
index 8b89c977..00000000
--- a/spring-cloud-consul-core/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
- src/main/javadoc
-
diff --git a/spring-cloud-consul-core/target/javadoc-bundle-options/package-list b/spring-cloud-consul-core/target/javadoc-bundle-options/package-list
deleted file mode 100644
index b52fe94b..00000000
--- a/spring-cloud-consul-core/target/javadoc-bundle-options/package-list
+++ /dev/null
@@ -1,209 +0,0 @@
-java.applet
-java.awt
-java.awt.color
-java.awt.datatransfer
-java.awt.dnd
-java.awt.event
-java.awt.font
-java.awt.geom
-java.awt.im
-java.awt.im.spi
-java.awt.image
-java.awt.image.renderable
-java.awt.print
-java.beans
-java.beans.beancontext
-java.io
-java.lang
-java.lang.annotation
-java.lang.instrument
-java.lang.invoke
-java.lang.management
-java.lang.ref
-java.lang.reflect
-java.math
-java.net
-java.nio
-java.nio.channels
-java.nio.channels.spi
-java.nio.charset
-java.nio.charset.spi
-java.nio.file
-java.nio.file.attribute
-java.nio.file.spi
-java.rmi
-java.rmi.activation
-java.rmi.dgc
-java.rmi.registry
-java.rmi.server
-java.security
-java.security.acl
-java.security.cert
-java.security.interfaces
-java.security.spec
-java.sql
-java.text
-java.text.spi
-java.util
-java.util.concurrent
-java.util.concurrent.atomic
-java.util.concurrent.locks
-java.util.jar
-java.util.logging
-java.util.prefs
-java.util.regex
-java.util.spi
-java.util.zip
-javax.accessibility
-javax.activation
-javax.activity
-javax.annotation
-javax.annotation.processing
-javax.crypto
-javax.crypto.interfaces
-javax.crypto.spec
-javax.imageio
-javax.imageio.event
-javax.imageio.metadata
-javax.imageio.plugins.bmp
-javax.imageio.plugins.jpeg
-javax.imageio.spi
-javax.imageio.stream
-javax.jws
-javax.jws.soap
-javax.lang.model
-javax.lang.model.element
-javax.lang.model.type
-javax.lang.model.util
-javax.management
-javax.management.loading
-javax.management.modelmbean
-javax.management.monitor
-javax.management.openmbean
-javax.management.relation
-javax.management.remote
-javax.management.remote.rmi
-javax.management.timer
-javax.naming
-javax.naming.directory
-javax.naming.event
-javax.naming.ldap
-javax.naming.spi
-javax.net
-javax.net.ssl
-javax.print
-javax.print.attribute
-javax.print.attribute.standard
-javax.print.event
-javax.rmi
-javax.rmi.CORBA
-javax.rmi.ssl
-javax.script
-javax.security.auth
-javax.security.auth.callback
-javax.security.auth.kerberos
-javax.security.auth.login
-javax.security.auth.spi
-javax.security.auth.x500
-javax.security.cert
-javax.security.sasl
-javax.sound.midi
-javax.sound.midi.spi
-javax.sound.sampled
-javax.sound.sampled.spi
-javax.sql
-javax.sql.rowset
-javax.sql.rowset.serial
-javax.sql.rowset.spi
-javax.swing
-javax.swing.border
-javax.swing.colorchooser
-javax.swing.event
-javax.swing.filechooser
-javax.swing.plaf
-javax.swing.plaf.basic
-javax.swing.plaf.metal
-javax.swing.plaf.multi
-javax.swing.plaf.nimbus
-javax.swing.plaf.synth
-javax.swing.table
-javax.swing.text
-javax.swing.text.html
-javax.swing.text.html.parser
-javax.swing.text.rtf
-javax.swing.tree
-javax.swing.undo
-javax.tools
-javax.transaction
-javax.transaction.xa
-javax.xml
-javax.xml.bind
-javax.xml.bind.annotation
-javax.xml.bind.annotation.adapters
-javax.xml.bind.attachment
-javax.xml.bind.helpers
-javax.xml.bind.util
-javax.xml.crypto
-javax.xml.crypto.dom
-javax.xml.crypto.dsig
-javax.xml.crypto.dsig.dom
-javax.xml.crypto.dsig.keyinfo
-javax.xml.crypto.dsig.spec
-javax.xml.datatype
-javax.xml.namespace
-javax.xml.parsers
-javax.xml.soap
-javax.xml.stream
-javax.xml.stream.events
-javax.xml.stream.util
-javax.xml.transform
-javax.xml.transform.dom
-javax.xml.transform.sax
-javax.xml.transform.stax
-javax.xml.transform.stream
-javax.xml.validation
-javax.xml.ws
-javax.xml.ws.handler
-javax.xml.ws.handler.soap
-javax.xml.ws.http
-javax.xml.ws.soap
-javax.xml.ws.spi
-javax.xml.ws.spi.http
-javax.xml.ws.wsaddressing
-javax.xml.xpath
-org.ietf.jgss
-org.omg.CORBA
-org.omg.CORBA.DynAnyPackage
-org.omg.CORBA.ORBPackage
-org.omg.CORBA.TypeCodePackage
-org.omg.CORBA.portable
-org.omg.CORBA_2_3
-org.omg.CORBA_2_3.portable
-org.omg.CosNaming
-org.omg.CosNaming.NamingContextExtPackage
-org.omg.CosNaming.NamingContextPackage
-org.omg.Dynamic
-org.omg.DynamicAny
-org.omg.DynamicAny.DynAnyFactoryPackage
-org.omg.DynamicAny.DynAnyPackage
-org.omg.IOP
-org.omg.IOP.CodecFactoryPackage
-org.omg.IOP.CodecPackage
-org.omg.Messaging
-org.omg.PortableInterceptor
-org.omg.PortableInterceptor.ORBInitInfoPackage
-org.omg.PortableServer
-org.omg.PortableServer.CurrentPackage
-org.omg.PortableServer.POAManagerPackage
-org.omg.PortableServer.POAPackage
-org.omg.PortableServer.ServantLocatorPackage
-org.omg.PortableServer.portable
-org.omg.SendingContext
-org.omg.stub.java.rmi
-org.w3c.dom
-org.w3c.dom.bootstrap
-org.w3c.dom.events
-org.w3c.dom.ls
-org.xml.sax
-org.xml.sax.ext
-org.xml.sax.helpers
diff --git a/spring-cloud-consul-core/target/maven-archiver/pom.properties b/spring-cloud-consul-core/target/maven-archiver/pom.properties
deleted file mode 100644
index 0c9e9fef..00000000
--- a/spring-cloud-consul-core/target/maven-archiver/pom.properties
+++ /dev/null
@@ -1,5 +0,0 @@
-#Generated by Maven
-#Thu Sep 22 13:40:20 UTC 2016
-version=1.1.0.BUILD-SNAPSHOT
-groupId=org.springframework.cloud
-artifactId=spring-cloud-consul-core
diff --git a/spring-cloud-consul-core/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/spring-cloud-consul-core/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
deleted file mode 100644
index 36e3c20d..00000000
--- a/spring-cloud-consul-core/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
+++ /dev/null
@@ -1,14 +0,0 @@
-META-INF/spring-configuration-metadata.json
-org/springframework/cloud/consul/ConsulAutoConfiguration$RetryConfiguration.class
-org/springframework/cloud/consul/model/SerfStatusEnum.class
-org/springframework/cloud/consul/ConsulProperties.class
-org/springframework/cloud/consul/ConsulAutoConfiguration.class
-org/springframework/cloud/consul/ConsulEndpoint.class
-org/springframework/cloud/consul/RetryProperties.class
-org/springframework/cloud/consul/ConditionalOnConsulEnabled.class
-org/springframework/cloud/consul/ConsulHealthIndicator.class
-org/springframework/cloud/consul/ConditionalOnConsulEnabled$OnConsulEnabledCondition$FoundProperty.class
-org/springframework/cloud/consul/ConditionalOnConsulEnabled$OnConsulEnabledCondition.class
-org/springframework/cloud/consul/ConditionalOnConsulEnabled$OnConsulEnabledCondition$FoundClass.class
-org/springframework/cloud/consul/ConsulAutoConfiguration$ConsulHealthConfig.class
-org/springframework/cloud/consul/ConsulEndpoint$ConsulData.class
diff --git a/spring-cloud-consul-core/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/spring-cloud-consul-core/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
deleted file mode 100644
index 38bcd806..00000000
--- a/spring-cloud-consul-core/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
+++ /dev/null
@@ -1,7 +0,0 @@
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-core/src/main/java/org/springframework/cloud/consul/ConsulEndpoint.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-core/src/main/java/org/springframework/cloud/consul/ConsulProperties.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-core/src/main/java/org/springframework/cloud/consul/ConsulHealthIndicator.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-core/src/main/java/org/springframework/cloud/consul/RetryProperties.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-core/src/main/java/org/springframework/cloud/consul/ConsulAutoConfiguration.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-core/src/main/java/org/springframework/cloud/consul/ConditionalOnConsulEnabled.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-core/src/main/java/org/springframework/cloud/consul/model/SerfStatusEnum.java
diff --git a/spring-cloud-consul-core/target/spring-cloud-consul-core-1.1.0.BUILD-SNAPSHOT-javadoc.jar b/spring-cloud-consul-core/target/spring-cloud-consul-core-1.1.0.BUILD-SNAPSHOT-javadoc.jar
deleted file mode 100644
index 92be42d8..00000000
Binary files a/spring-cloud-consul-core/target/spring-cloud-consul-core-1.1.0.BUILD-SNAPSHOT-javadoc.jar and /dev/null differ
diff --git a/spring-cloud-consul-core/target/spring-cloud-consul-core-1.1.0.BUILD-SNAPSHOT-sources.jar b/spring-cloud-consul-core/target/spring-cloud-consul-core-1.1.0.BUILD-SNAPSHOT-sources.jar
deleted file mode 100644
index 28631195..00000000
Binary files a/spring-cloud-consul-core/target/spring-cloud-consul-core-1.1.0.BUILD-SNAPSHOT-sources.jar and /dev/null differ
diff --git a/spring-cloud-consul-core/target/spring-cloud-consul-core-1.1.0.BUILD-SNAPSHOT.jar b/spring-cloud-consul-core/target/spring-cloud-consul-core-1.1.0.BUILD-SNAPSHOT.jar
deleted file mode 100644
index 71716525..00000000
Binary files a/spring-cloud-consul-core/target/spring-cloud-consul-core-1.1.0.BUILD-SNAPSHOT.jar and /dev/null differ
diff --git a/spring-cloud-consul-core/target/spring-cloud-consul-core-1.1.0.RELEASE-javadoc.jar b/spring-cloud-consul-core/target/spring-cloud-consul-core-1.1.0.RELEASE-javadoc.jar
deleted file mode 100644
index 7d031b00..00000000
Binary files a/spring-cloud-consul-core/target/spring-cloud-consul-core-1.1.0.RELEASE-javadoc.jar and /dev/null differ
diff --git a/spring-cloud-consul-core/target/spring-cloud-consul-core-1.1.0.RELEASE-sources.jar b/spring-cloud-consul-core/target/spring-cloud-consul-core-1.1.0.RELEASE-sources.jar
deleted file mode 100644
index be77daa9..00000000
Binary files a/spring-cloud-consul-core/target/spring-cloud-consul-core-1.1.0.RELEASE-sources.jar and /dev/null differ
diff --git a/spring-cloud-consul-core/target/spring-cloud-consul-core-1.1.0.RELEASE.jar b/spring-cloud-consul-core/target/spring-cloud-consul-core-1.1.0.RELEASE.jar
deleted file mode 100644
index f1b24b5a..00000000
Binary files a/spring-cloud-consul-core/target/spring-cloud-consul-core-1.1.0.RELEASE.jar and /dev/null differ
diff --git a/spring-cloud-consul-core/target/spring-cloud-consul-core-1.1.1.BUILD-SNAPSHOT-javadoc.jar b/spring-cloud-consul-core/target/spring-cloud-consul-core-1.1.1.BUILD-SNAPSHOT-javadoc.jar
deleted file mode 100644
index 3d505b7c..00000000
Binary files a/spring-cloud-consul-core/target/spring-cloud-consul-core-1.1.1.BUILD-SNAPSHOT-javadoc.jar and /dev/null differ
diff --git a/spring-cloud-consul-core/target/spring-cloud-consul-core-1.1.1.BUILD-SNAPSHOT-sources.jar b/spring-cloud-consul-core/target/spring-cloud-consul-core-1.1.1.BUILD-SNAPSHOT-sources.jar
deleted file mode 100644
index e45e9963..00000000
Binary files a/spring-cloud-consul-core/target/spring-cloud-consul-core-1.1.1.BUILD-SNAPSHOT-sources.jar and /dev/null differ
diff --git a/spring-cloud-consul-core/target/spring-cloud-consul-core-1.1.1.BUILD-SNAPSHOT.jar b/spring-cloud-consul-core/target/spring-cloud-consul-core-1.1.1.BUILD-SNAPSHOT.jar
deleted file mode 100644
index d5ea940b..00000000
Binary files a/spring-cloud-consul-core/target/spring-cloud-consul-core-1.1.1.BUILD-SNAPSHOT.jar and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/apidocs/allclasses-frame.html b/spring-cloud-consul-discovery/target/apidocs/allclasses-frame.html
deleted file mode 100644
index 8530dbdb..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/allclasses-frame.html
+++ /dev/null
@@ -1,38 +0,0 @@
-
-
-
-
-
-
-All Classes (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-All Classes
-
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/allclasses-noframe.html b/spring-cloud-consul-discovery/target/apidocs/allclasses-noframe.html
deleted file mode 100644
index 742c75c2..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/allclasses-noframe.html
+++ /dev/null
@@ -1,38 +0,0 @@
-
-
-
-
-
-
-All Classes (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-All Classes
-
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/constant-values.html b/spring-cloud-consul-discovery/target/apidocs/constant-values.html
deleted file mode 100644
index 92eaca01..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/constant-values.html
+++ /dev/null
@@ -1,200 +0,0 @@
-
-
-
-
-
-
-Constant Field Values (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
org.springframework.*
-
-
-
-
-
-
-org.springframework.cloud.consul.discovery.ConsulLifecycle
-
-Modifier and Type
-Constant Field
-Value
-
-
-
-
-
- public static final char
-SEPARATOR
-45
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/deprecated-list.html b/spring-cloud-consul-discovery/target/apidocs/deprecated-list.html
deleted file mode 100644
index 3067145f..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/deprecated-list.html
+++ /dev/null
@@ -1,154 +0,0 @@
-
-
-
-
-
-
-Deprecated List (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/help-doc.html b/spring-cloud-consul-discovery/target/apidocs/help-doc.html
deleted file mode 100644
index 605dceaf..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/help-doc.html
+++ /dev/null
@@ -1,231 +0,0 @@
-
-
-
-
-
-
-API Help (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-Overview
-The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.
-
-
-Package
-Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:
-
-Interfaces (italic)
-Classes
-Enums
-Exceptions
-Errors
-Annotation Types
-
-
-
-Class/Interface
-Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:
-
-Class inheritance diagram
-Direct Subclasses
-All Known Subinterfaces
-All Known Implementing Classes
-Class/interface declaration
-Class/interface description
-
-
-Nested Class Summary
-Field Summary
-Constructor Summary
-Method Summary
-
-
-Field Detail
-Constructor Detail
-Method Detail
-
-Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.
-
-
-Annotation Type
-Each annotation type has its own separate page with the following sections:
-
-Annotation Type declaration
-Annotation Type description
-Required Element Summary
-Optional Element Summary
-Element Detail
-
-
-
-Enum
-Each enum has its own separate page with the following sections:
-
-Enum declaration
-Enum description
-Enum Constant Summary
-Enum Constant Detail
-
-
-
-Use
-Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.
-
-
-Tree (Class Hierarchy)
-There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.
-
-When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
-When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
-
-
-
-Deprecated API
-The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.
-
-
-Index
-The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.
-
-
-Prev/Next
-These links take you to the next or previous class, interface, package, or related page.
-
-
-Frames/No Frames
-These links show and hide the HTML frames. All pages are available with or without frames.
-
-
-All Classes
-The All Classes link shows all classes and interfaces except non-static nested types.
-
-
-Serialized Form
-Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.
-
-
-Constant Field Values
-The Constant Field Values page lists the static final fields and their values.
-
-
-
This help file applies to API documentation generated using the standard doclet.
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/index-all.html b/spring-cloud-consul-discovery/target/apidocs/index-all.html
deleted file mode 100644
index 9674a38c..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/index-all.html
+++ /dev/null
@@ -1,490 +0,0 @@
-
-
-
-
-
-
-Index (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-A C D F G H I L M N O P R S T V
-
-
-
A
-
-add(NewService) - Method in class org.springframework.cloud.consul.discovery.TtlScheduler
-
-Add a service to the checks loop.
-
-AliveServerListFilter - Class in org.springframework.cloud.consul.discovery.filters
-
-Deprecated.
-
-AliveServerListFilter(FilteringAgentClient) - Constructor for class org.springframework.cloud.consul.discovery.filters.AliveServerListFilter
-
-Deprecated.
-
-
-
-
-
-
C
-
-catalogServicesWatch() - Method in class org.springframework.cloud.consul.discovery.ConsulCatalogWatch
-
-computeHearbeatInterval() - Method in class org.springframework.cloud.consul.discovery.HeartbeatProperties
-
-ConsulCatalogWatch - Class in org.springframework.cloud.consul.discovery
-
-ConsulCatalogWatch(ConsulDiscoveryProperties, ConsulClient) - Constructor for class org.springframework.cloud.consul.discovery.ConsulCatalogWatch
-
-consulCatalogWatch(ConsulDiscoveryProperties) - Method in class org.springframework.cloud.consul.discovery.ConsulDiscoveryClientConfiguration
-
-ConsulConfigServerAutoConfiguration - Class in org.springframework.cloud.consul.discovery.configclient
-
-Extra configuration for config server if it happens to be registered with Consul.
-
-ConsulConfigServerAutoConfiguration() - Constructor for class org.springframework.cloud.consul.discovery.configclient.ConsulConfigServerAutoConfiguration
-
-ConsulDiscoveryClient - Class in org.springframework.cloud.consul.discovery
-
-ConsulDiscoveryClient(ConsulClient, ConsulLifecycle, ConsulDiscoveryProperties) - Constructor for class org.springframework.cloud.consul.discovery.ConsulDiscoveryClient
-
-consulDiscoveryClient(ConsulLifecycle, ConsulDiscoveryProperties) - Method in class org.springframework.cloud.consul.discovery.ConsulDiscoveryClientConfiguration
-
-ConsulDiscoveryClientConfigServiceBootstrapConfiguration - Class in org.springframework.cloud.consul.discovery.configclient
-
-Helper for config client that wants to lookup the config server via discovery.
-
-ConsulDiscoveryClientConfigServiceBootstrapConfiguration() - Constructor for class org.springframework.cloud.consul.discovery.configclient.ConsulDiscoveryClientConfigServiceBootstrapConfiguration
-
-ConsulDiscoveryClientConfiguration - Class in org.springframework.cloud.consul.discovery
-
-ConsulDiscoveryClientConfiguration() - Constructor for class org.springframework.cloud.consul.discovery.ConsulDiscoveryClientConfiguration
-
-consulDiscoveryProperties(InetUtils) - Method in class org.springframework.cloud.consul.discovery.configclient.ConsulDiscoveryClientConfigServiceBootstrapConfiguration
-
-consulDiscoveryProperties(InetUtils) - Method in class org.springframework.cloud.consul.discovery.ConsulDiscoveryClientConfiguration
-
-ConsulDiscoveryProperties - Class in org.springframework.cloud.consul.discovery
-
-Defines configuration for service discovery and registration.
-
-ConsulDiscoveryProperties(InetUtils) - Constructor for class org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties
-
-ConsulDiscoveryProperties.Lifecycle - Class in org.springframework.cloud.consul.discovery
-
-consulLifecycle(ConsulDiscoveryProperties, HeartbeatProperties) - Method in class org.springframework.cloud.consul.discovery.ConsulDiscoveryClientConfiguration
-
-ConsulLifecycle - Class in org.springframework.cloud.consul.discovery
-
-ConsulLifecycle(ConsulClient, ConsulDiscoveryProperties, HeartbeatProperties) - Constructor for class org.springframework.cloud.consul.discovery.ConsulLifecycle
-
-ConsulPing - Class in org.springframework.cloud.consul.discovery
-
-"Ping" Consul
- i.e.
-
-ConsulPing() - Constructor for class org.springframework.cloud.consul.discovery.ConsulPing
-
-ConsulRibbonClientConfiguration - Class in org.springframework.cloud.consul.discovery
-
-Preprocessor that configures defaults for Consul-discovered ribbon clients.
-
-ConsulRibbonClientConfiguration() - Constructor for class org.springframework.cloud.consul.discovery.ConsulRibbonClientConfiguration
-
-ConsulRibbonClientConfiguration(String) - Constructor for class org.springframework.cloud.consul.discovery.ConsulRibbonClientConfiguration
-
-ConsulServer - Class in org.springframework.cloud.consul.discovery
-
-ConsulServer(HealthService) - Constructor for class org.springframework.cloud.consul.discovery.ConsulServer
-
-ConsulServerList - Class in org.springframework.cloud.consul.discovery
-
-ConsulServerList(ConsulClient, ConsulDiscoveryProperties) - Constructor for class org.springframework.cloud.consul.discovery.ConsulServerList
-
-ConsulServerUtils - Class in org.springframework.cloud.consul.discovery
-
-ConsulServerUtils() - Constructor for class org.springframework.cloud.consul.discovery.ConsulServerUtils
-
-
-
-
-
-
D
-
-DEFAULT_NAMESPACE - Static variable in class org.springframework.cloud.consul.discovery.ConsulRibbonClientConfiguration
-
-deregister() - Method in class org.springframework.cloud.consul.discovery.ConsulLifecycle
-
-deregisterManagement() - Method in class org.springframework.cloud.consul.discovery.ConsulLifecycle
-
-description() - Method in class org.springframework.cloud.consul.discovery.ConsulDiscoveryClient
-
-
-
-
-
-
F
-
-FilteringAgentClient - Class in org.springframework.cloud.consul.discovery.filters
-
-Deprecated.
-
-FilteringAgentClient(ConsulClient) - Constructor for class org.springframework.cloud.consul.discovery.filters.FilteringAgentClient
-
-Deprecated.
-
-findHost(HealthService) - Static method in class org.springframework.cloud.consul.discovery.ConsulServerUtils
-
-
-
-
-
-
G
-
-getAliveAgents() - Method in class org.springframework.cloud.consul.discovery.filters.FilteringAgentClient
-
-Deprecated.
-
-getAliveAgentsAddresses() - Method in class org.springframework.cloud.consul.discovery.filters.FilteringAgentClient
-
-Deprecated.
-
-getAllInstances() - Method in class org.springframework.cloud.consul.discovery.ConsulDiscoveryClient
-
-getAppName() - Method in class org.springframework.cloud.consul.discovery.ConsulLifecycle
-
-getConfiguration() - Method in class org.springframework.cloud.consul.discovery.ConsulLifecycle
-
-getConfiguredPort() - Method in class org.springframework.cloud.consul.discovery.ConsulLifecycle
-
-getFilteredListOfServers(List<Server>) - Method in class org.springframework.cloud.consul.discovery.filters.AliveServerListFilter
-
-Deprecated.
-
-getFilteredListOfServers(List<Server>) - Method in class org.springframework.cloud.consul.discovery.filters.ServiceCheckServerListFilter
-
-Deprecated.
-
-getFilteredListOfServers(List<Server>) - Method in class org.springframework.cloud.consul.discovery.HealthServiceServerListFilter
-
-getHealthService() - Method in class org.springframework.cloud.consul.discovery.ConsulServer
-
-getHostname() - Method in class org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties
-
-getInitialListOfServers() - Method in class org.springframework.cloud.consul.discovery.ConsulServerList
-
-getInstances(String) - Method in class org.springframework.cloud.consul.discovery.ConsulDiscoveryClient
-
-getInstances(String, QueryParams) - Method in class org.springframework.cloud.consul.discovery.ConsulDiscoveryClient
-
-getKey(String, String) - Method in class org.springframework.cloud.consul.discovery.ConsulRibbonClientConfiguration
-
-getLocalServiceInstance() - Method in class org.springframework.cloud.consul.discovery.ConsulDiscoveryClient
-
-getManagementPort() - Method in class org.springframework.cloud.consul.discovery.ConsulLifecycle
-
-getManagementServiceId() - Method in class org.springframework.cloud.consul.discovery.ConsulLifecycle
-
-getManagementServiceName() - Method in class org.springframework.cloud.consul.discovery.ConsulLifecycle
-
-getMetadata() - Method in class org.springframework.cloud.consul.discovery.ConsulServer
-
-getMetadata(HealthService) - Static method in class org.springframework.cloud.consul.discovery.ConsulServerUtils
-
-getMetadata(List<String>) - Static method in class org.springframework.cloud.consul.discovery.ConsulServerUtils
-
-getMetaInfo() - Method in class org.springframework.cloud.consul.discovery.ConsulServer
-
-getProperty(String) - Method in class org.springframework.cloud.consul.discovery.ConsulRibbonClientConfiguration
-
-getQueryTagForService(String) - Method in class org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties
-
-getServiceId() - Method in class org.springframework.cloud.consul.discovery.ConsulLifecycle
-
-getServices() - Method in class org.springframework.cloud.consul.discovery.ConsulDiscoveryClient
-
-getTtl() - Method in class org.springframework.cloud.consul.discovery.HeartbeatProperties
-
-getUpdatedListOfServers() - Method in class org.springframework.cloud.consul.discovery.ConsulServerList
-
-
-
-
-
-
H
-
-HealthServiceServerListFilter - Class in org.springframework.cloud.consul.discovery
-
-ServerList implementaion that filters ConsulServers based on if all their Health Checks are PASSING.
-
-HealthServiceServerListFilter() - Constructor for class org.springframework.cloud.consul.discovery.HealthServiceServerListFilter
-
-heartbeatProperties() - Method in class org.springframework.cloud.consul.discovery.ConsulDiscoveryClientConfiguration
-
-HeartbeatProperties - Class in org.springframework.cloud.consul.discovery
-
-HeartbeatProperties() - Constructor for class org.springframework.cloud.consul.discovery.HeartbeatProperties
-
-
-
-
-
-
I
-
-init() - Method in class org.springframework.cloud.consul.discovery.configclient.ConsulConfigServerAutoConfiguration
-
-init() - Method in class org.springframework.cloud.consul.discovery.HeartbeatProperties
-
-initWithNiwsConfig(IClientConfig) - Method in class org.springframework.cloud.consul.discovery.ConsulServerList
-
-isAlive(Server) - Method in class org.springframework.cloud.consul.discovery.ConsulPing
-
-isEnabled() - Method in class org.springframework.cloud.consul.discovery.ConsulLifecycle
-
-isPassingChecks() - Method in class org.springframework.cloud.consul.discovery.ConsulServer
-
-
-
-
-
-
L
-
-Lifecycle() - Constructor for class org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties.Lifecycle
-
-
-
-
-
-
M
-
-MANAGEMENT - Static variable in class org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties
-
-
-
-
-
-
N
-
-normalizeForDns(String) - Static method in class org.springframework.cloud.consul.discovery.ConsulLifecycle
-
-
-
-
-
-
O
-
-org.springframework.cloud.consul.discovery - package org.springframework.cloud.consul.discovery
-
-org.springframework.cloud.consul.discovery.configclient - package org.springframework.cloud.consul.discovery.configclient
-
-org.springframework.cloud.consul.discovery.filters - package org.springframework.cloud.consul.discovery.filters
-
-
-
-
-
-
P
-
-preprocess() - Method in class org.springframework.cloud.consul.discovery.ConsulRibbonClientConfiguration
-
-
-
-
-
-
R
-
-register() - Method in class org.springframework.cloud.consul.discovery.ConsulLifecycle
-
-register(NewService) - Method in class org.springframework.cloud.consul.discovery.ConsulLifecycle
-
-registerManagement() - Method in class org.springframework.cloud.consul.discovery.ConsulLifecycle
-
-remove(String) - Method in class org.springframework.cloud.consul.discovery.TtlScheduler
-
-RibbonConsulAutoConfiguration - Class in org.springframework.cloud.consul.discovery
-
-RibbonConsulAutoConfiguration() - Constructor for class org.springframework.cloud.consul.discovery.RibbonConsulAutoConfiguration
-
-ribbonPing() - Method in class org.springframework.cloud.consul.discovery.ConsulRibbonClientConfiguration
-
-ribbonServerList(IClientConfig, ConsulDiscoveryProperties) - Method in class org.springframework.cloud.consul.discovery.ConsulRibbonClientConfiguration
-
-ribbonServerListFilter() - Method in class org.springframework.cloud.consul.discovery.ConsulRibbonClientConfiguration
-
-
-
-
-
-
S
-
-SEPARATOR - Static variable in class org.springframework.cloud.consul.discovery.ConsulLifecycle
-
-ServiceCheckServerListFilter - Class in org.springframework.cloud.consul.discovery.filters
-
-Deprecated.
-
-ServiceCheckServerListFilter(ConsulClient) - Constructor for class org.springframework.cloud.consul.discovery.filters.ServiceCheckServerListFilter
-
-Deprecated.
-
-setApplicationEventPublisher(ApplicationEventPublisher) - Method in class org.springframework.cloud.consul.discovery.ConsulCatalogWatch
-
-setConfiguredPort(int) - Method in class org.springframework.cloud.consul.discovery.ConsulLifecycle
-
-setHostname(String) - Method in class org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties
-
-setIpAddress(String) - Method in class org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties
-
-setPort(int) - Method in class org.springframework.cloud.consul.discovery.ConsulLifecycle
-
-setProp(String, String, String) - Method in class org.springframework.cloud.consul.discovery.ConsulRibbonClientConfiguration
-
-setServerProperties(ServerProperties) - Method in class org.springframework.cloud.consul.discovery.ConsulDiscoveryClient
-
-setServletContext(ServletContext) - Method in class org.springframework.cloud.consul.discovery.ConsulLifecycle
-
-setTtlScheduler(TtlScheduler) - Method in class org.springframework.cloud.consul.discovery.ConsulLifecycle
-
-start() - Method in class org.springframework.cloud.consul.discovery.ConsulLifecycle
-
-
-
-
-
-
T
-
-toString() - Method in class org.springframework.cloud.consul.discovery.ConsulServerList
-
-ttlScheduler(HeartbeatProperties) - Method in class org.springframework.cloud.consul.discovery.ConsulDiscoveryClientConfiguration
-
-TtlScheduler - Class in org.springframework.cloud.consul.discovery
-
-Created by nicu on 11.03.2015.
-
-TtlScheduler(HeartbeatProperties, ConsulClient) - Constructor for class org.springframework.cloud.consul.discovery.TtlScheduler
-
-
-
-
-
-
V
-
-VALUE_NOT_SET - Static variable in class org.springframework.cloud.consul.discovery.ConsulRibbonClientConfiguration
-
-
-
A C D F G H I L M N O P R S T V
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/index.html b/spring-cloud-consul-discovery/target/apidocs/index.html
deleted file mode 100644
index 798e3954..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/index.html
+++ /dev/null
@@ -1,75 +0,0 @@
-
-
-
-
-
-
-Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-Frame Alert
-This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to Non-frame version .
-
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulCatalogWatch.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulCatalogWatch.html
deleted file mode 100644
index 2e4aa763..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulCatalogWatch.html
+++ /dev/null
@@ -1,302 +0,0 @@
-
-
-
-
-
-
-ConsulCatalogWatch (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.discovery.ConsulCatalogWatch
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulDiscoveryClient.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulDiscoveryClient.html
deleted file mode 100644
index 1d326767..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulDiscoveryClient.html
+++ /dev/null
@@ -1,382 +0,0 @@
-
-
-
-
-
-
-ConsulDiscoveryClient (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.discovery.ConsulDiscoveryClient
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientConfiguration.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientConfiguration.html
deleted file mode 100644
index 506f8900..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientConfiguration.html
+++ /dev/null
@@ -1,363 +0,0 @@
-
-
-
-
-
-
-ConsulDiscoveryClientConfiguration (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.discovery.ConsulDiscoveryClientConfiguration
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulDiscoveryProperties.Lifecycle.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulDiscoveryProperties.Lifecycle.html
deleted file mode 100644
index 04ccc4fc..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulDiscoveryProperties.Lifecycle.html
+++ /dev/null
@@ -1,243 +0,0 @@
-
-
-
-
-
-
-ConsulDiscoveryProperties.Lifecycle (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties.Lifecycle
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-Lifecycle ()
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-Lifecycle
-public Lifecycle()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulDiscoveryProperties.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulDiscoveryProperties.html
deleted file mode 100644
index a66a4cb2..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulDiscoveryProperties.html
+++ /dev/null
@@ -1,383 +0,0 @@
-
-
-
-
-
-
-ConsulDiscoveryProperties (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-Field Summary
-
-Fields
-
-Modifier and Type
-Field and Description
-
-
-protected static String
-MANAGEMENT
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-ConsulDiscoveryProperties (org.springframework.cloud.commons.util.InetUtils inetUtils)
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Field Detail
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulLifecycle.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulLifecycle.html
deleted file mode 100644
index 84eeedb3..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulLifecycle.html
+++ /dev/null
@@ -1,639 +0,0 @@
-
-
-
-
-
-
-ConsulLifecycle (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
-
-
-org.springframework.cloud.consul.discovery.ConsulLifecycle
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Field Summary
-
-Fields
-
-Modifier and Type
-Field and Description
-
-
-static char
-SEPARATOR
-
-
-
-
-
-
-Fields inherited from interface org.springframework.core.Ordered
-HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle
-destroy, getContext, getEnvironment, getOrder, getPhase, getPort, isAutoStartup, isRunning, onApplicationEvent, setApplicationContext, shouldRegisterManagement, stop, stop
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Field Detail
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulPing.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulPing.html
deleted file mode 100644
index b54baf68..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulPing.html
+++ /dev/null
@@ -1,288 +0,0 @@
-
-
-
-
-
-
-ConsulPing (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.discovery.ConsulPing
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-ConsulPing ()
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-ConsulPing
-public ConsulPing()
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulRibbonClientConfiguration.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulRibbonClientConfiguration.html
deleted file mode 100644
index 2bf9f910..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulRibbonClientConfiguration.html
+++ /dev/null
@@ -1,442 +0,0 @@
-
-
-
-
-
-
-ConsulRibbonClientConfiguration (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.discovery.ConsulRibbonClientConfiguration
-
-
-
-
-
-
-
-
-@Configuration
-public class ConsulRibbonClientConfiguration
-extends Object
-Preprocessor that configures defaults for Consul-discovered ribbon clients. Such as:
- @zone, NIWSServerListClassName, DeploymentContextBasedVipAddresses,
- NFLoadBalancerRuleClassName, NIWSServerListFilterClassName and more
-
-Author:
-Spencer Gibb, Dave Syer
-
-
-
-
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulServer.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulServer.html
deleted file mode 100644
index 95058148..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulServer.html
+++ /dev/null
@@ -1,362 +0,0 @@
-
-
-
-
-
-
-ConsulServer (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.netflix.loadbalancer.Server
-
-
-org.springframework.cloud.consul.discovery.ConsulServer
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-Nested classes/interfaces inherited from class com.netflix.loadbalancer.Server
-com.netflix.loadbalancer.Server.MetaInfo
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-Fields inherited from class com.netflix.loadbalancer.Server
-UNKNOWN_ZONE
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-ConsulServer (com.ecwid.consul.v1.health.model.HealthService healthService)
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.netflix.loadbalancer.Server
-equals, getHost, getHostPort, getId, getPort, getZone, hashCode, isAlive, isReadyToServe, normalizeId, setAlive, setHost, setHostPort, setId, setPort, setReadyToServe, setZone, toString
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulServerList.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulServerList.html
deleted file mode 100644
index d881d83b..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulServerList.html
+++ /dev/null
@@ -1,338 +0,0 @@
-
-
-
-
-
-
-ConsulServerList (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.netflix.loadbalancer.AbstractServerList<ConsulServer >
-
-
-org.springframework.cloud.consul.discovery.ConsulServerList
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.netflix.loadbalancer.AbstractServerList
-getFilterImpl
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulServerUtils.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulServerUtils.html
deleted file mode 100644
index 800924f1..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/ConsulServerUtils.html
+++ /dev/null
@@ -1,303 +0,0 @@
-
-
-
-
-
-
-ConsulServerUtils (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.discovery.ConsulServerUtils
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/HealthServiceServerListFilter.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/HealthServiceServerListFilter.html
deleted file mode 100644
index 941f1664..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/HealthServiceServerListFilter.html
+++ /dev/null
@@ -1,287 +0,0 @@
-
-
-
-
-
-
-HealthServiceServerListFilter (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.discovery.HealthServiceServerListFilter
-
-
-
-
-
-
-
-All Implemented Interfaces:
-com.netflix.loadbalancer.ServerListFilter<com.netflix.loadbalancer.Server>
-
-
-
-public class HealthServiceServerListFilter
-extends Object
-implements com.netflix.loadbalancer.ServerListFilter<com.netflix.loadbalancer.Server>
-ServerList implementaion that filters ConsulServers based on if all their Health Checks are PASSING.
-
-Author:
-Spencer Gibb
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/HeartbeatProperties.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/HeartbeatProperties.html
deleted file mode 100644
index cb5fc798..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/HeartbeatProperties.html
+++ /dev/null
@@ -1,301 +0,0 @@
-
-
-
-
-
-
-HeartbeatProperties (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.discovery.HeartbeatProperties
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/RibbonConsulAutoConfiguration.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/RibbonConsulAutoConfiguration.html
deleted file mode 100644
index 6026b3c3..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/RibbonConsulAutoConfiguration.html
+++ /dev/null
@@ -1,249 +0,0 @@
-
-
-
-
-
-
-RibbonConsulAutoConfiguration (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.discovery.RibbonConsulAutoConfiguration
-
-
-
-
-
-
-
-
-@Configuration
- @EnableConfigurationProperties
- @ConditionalOnBean(value=org.springframework.cloud.netflix.ribbon.SpringClientFactory.class)
- @ConditionalOnProperty(value="spring.cloud.consul.ribbon.enabled",
- matchIfMissing=true)
- @RibbonClients(defaultConfiguration=ConsulRibbonClientConfiguration.class )
-public class RibbonConsulAutoConfiguration
-extends Object
-
-Author:
-Dave Syer
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/TtlScheduler.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/TtlScheduler.html
deleted file mode 100644
index 0f7b9427..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/TtlScheduler.html
+++ /dev/null
@@ -1,296 +0,0 @@
-
-
-
-
-
-
-TtlScheduler (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.discovery.TtlScheduler
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-All Methods Instance Methods Concrete Methods
-
-Modifier and Type
-Method and Description
-
-
-void
-add (com.ecwid.consul.v1.agent.model.NewService service)
-Add a service to the checks loop.
-
-
-
-void
-remove (String serviceId)
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulCatalogWatch.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulCatalogWatch.html
deleted file mode 100644
index 82b6b31d..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulCatalogWatch.html
+++ /dev/null
@@ -1,166 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.discovery.ConsulCatalogWatch (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulDiscoveryClient.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulDiscoveryClient.html
deleted file mode 100644
index 04eff4d7..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulDiscoveryClient.html
+++ /dev/null
@@ -1,167 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.discovery.ConsulDiscoveryClient (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulDiscoveryClientConfiguration.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulDiscoveryClientConfiguration.html
deleted file mode 100644
index 86afdab5..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulDiscoveryClientConfiguration.html
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.discovery.ConsulDiscoveryClientConfiguration (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of org.springframework.cloud.consul.discovery.ConsulDiscoveryClientConfiguration
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulDiscoveryProperties.Lifecycle.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulDiscoveryProperties.Lifecycle.html
deleted file mode 100644
index 9c7a1018..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulDiscoveryProperties.Lifecycle.html
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties.Lifecycle (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties.Lifecycle
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulDiscoveryProperties.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulDiscoveryProperties.html
deleted file mode 100644
index bd2c15ca..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulDiscoveryProperties.html
+++ /dev/null
@@ -1,242 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulLifecycle.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulLifecycle.html
deleted file mode 100644
index 01749fa6..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulLifecycle.html
+++ /dev/null
@@ -1,194 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.discovery.ConsulLifecycle (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulPing.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulPing.html
deleted file mode 100644
index fe23db6e..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulPing.html
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.discovery.ConsulPing (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of org.springframework.cloud.consul.discovery.ConsulPing
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulRibbonClientConfiguration.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulRibbonClientConfiguration.html
deleted file mode 100644
index 39bc3df6..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulRibbonClientConfiguration.html
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.discovery.ConsulRibbonClientConfiguration (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of org.springframework.cloud.consul.discovery.ConsulRibbonClientConfiguration
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulServer.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulServer.html
deleted file mode 100644
index 272a5046..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulServer.html
+++ /dev/null
@@ -1,170 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.discovery.ConsulServer (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulServerList.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulServerList.html
deleted file mode 100644
index da2e1cb2..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulServerList.html
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.discovery.ConsulServerList (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of org.springframework.cloud.consul.discovery.ConsulServerList
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulServerUtils.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulServerUtils.html
deleted file mode 100644
index 4e8a8a55..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/ConsulServerUtils.html
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.discovery.ConsulServerUtils (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of org.springframework.cloud.consul.discovery.ConsulServerUtils
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/HealthServiceServerListFilter.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/HealthServiceServerListFilter.html
deleted file mode 100644
index 51cdc1d3..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/HealthServiceServerListFilter.html
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.discovery.HealthServiceServerListFilter (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of org.springframework.cloud.consul.discovery.HealthServiceServerListFilter
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/HeartbeatProperties.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/HeartbeatProperties.html
deleted file mode 100644
index 9ebe6b26..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/HeartbeatProperties.html
+++ /dev/null
@@ -1,201 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.discovery.HeartbeatProperties (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/RibbonConsulAutoConfiguration.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/RibbonConsulAutoConfiguration.html
deleted file mode 100644
index c3ceabd6..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/RibbonConsulAutoConfiguration.html
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.discovery.RibbonConsulAutoConfiguration (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of org.springframework.cloud.consul.discovery.RibbonConsulAutoConfiguration
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/TtlScheduler.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/TtlScheduler.html
deleted file mode 100644
index 68c496a5..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/class-use/TtlScheduler.html
+++ /dev/null
@@ -1,179 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.discovery.TtlScheduler (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/configclient/ConsulConfigServerAutoConfiguration.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/configclient/ConsulConfigServerAutoConfiguration.html
deleted file mode 100644
index 924dd062..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/configclient/ConsulConfigServerAutoConfiguration.html
+++ /dev/null
@@ -1,282 +0,0 @@
-
-
-
-
-
-
-ConsulConfigServerAutoConfiguration (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.discovery.configclient.ConsulConfigServerAutoConfiguration
-
-
-
-
-
-
-
-
-@Configuration
- @EnableConfigurationProperties
- @ConditionalOnClass(value={ConsulDiscoveryProperties.class ,com.ecwid.consul.v1.ConsulClient.class,org.springframework.cloud.config.server.config.ConfigServerProperties.class})
-public class ConsulConfigServerAutoConfiguration
-extends Object
-Extra configuration for config server if it happens to be registered with Consul.
-
-Author:
-Dave Syer
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/configclient/ConsulDiscoveryClientConfigServiceBootstrapConfiguration.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/configclient/ConsulDiscoveryClientConfigServiceBootstrapConfiguration.html
deleted file mode 100644
index 8b9dc4ed..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/configclient/ConsulDiscoveryClientConfigServiceBootstrapConfiguration.html
+++ /dev/null
@@ -1,284 +0,0 @@
-
-
-
-
-
-
-ConsulDiscoveryClientConfigServiceBootstrapConfiguration (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.discovery.configclient.ConsulDiscoveryClientConfigServiceBootstrapConfiguration
-
-
-
-
-
-
-
-
-@ConditionalOnClass(value=org.springframework.cloud.config.client.ConfigServicePropertySourceLocator.class)
- @ConditionalOnProperty(value="spring.cloud.config.discovery.enabled",
- matchIfMissing=false)
- @Configuration
- @Import(value={org.springframework.cloud.consul.ConsulAutoConfiguration.class ,ConsulDiscoveryClientConfiguration.class })
-public class ConsulDiscoveryClientConfigServiceBootstrapConfiguration
-extends Object
-Helper for config client that wants to lookup the config server via discovery.
-
-Author:
-Spencer Gibb
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/configclient/class-use/ConsulConfigServerAutoConfiguration.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/configclient/class-use/ConsulConfigServerAutoConfiguration.html
deleted file mode 100644
index f9926421..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/configclient/class-use/ConsulConfigServerAutoConfiguration.html
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.discovery.configclient.ConsulConfigServerAutoConfiguration (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of org.springframework.cloud.consul.discovery.configclient.ConsulConfigServerAutoConfiguration
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/configclient/class-use/ConsulDiscoveryClientConfigServiceBootstrapConfiguration.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/configclient/class-use/ConsulDiscoveryClientConfigServiceBootstrapConfiguration.html
deleted file mode 100644
index ff8b81d2..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/configclient/class-use/ConsulDiscoveryClientConfigServiceBootstrapConfiguration.html
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.discovery.configclient.ConsulDiscoveryClientConfigServiceBootstrapConfiguration (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of org.springframework.cloud.consul.discovery.configclient.ConsulDiscoveryClientConfigServiceBootstrapConfiguration
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/configclient/package-frame.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/configclient/package-frame.html
deleted file mode 100644
index e2bcdfe6..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/configclient/package-frame.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-org.springframework.cloud.consul.discovery.configclient (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/configclient/package-summary.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/configclient/package-summary.html
deleted file mode 100644
index 38081647..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/configclient/package-summary.html
+++ /dev/null
@@ -1,152 +0,0 @@
-
-
-
-
-
-
-org.springframework.cloud.consul.discovery.configclient (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/configclient/package-tree.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/configclient/package-tree.html
deleted file mode 100644
index 90984e44..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/configclient/package-tree.html
+++ /dev/null
@@ -1,140 +0,0 @@
-
-
-
-
-
-
-org.springframework.cloud.consul.discovery.configclient Class Hierarchy (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/configclient/package-use.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/configclient/package-use.html
deleted file mode 100644
index 97a81152..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/configclient/package-use.html
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
-
-
-Uses of Package org.springframework.cloud.consul.discovery.configclient (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of org.springframework.cloud.consul.discovery.configclient
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/AliveServerListFilter.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/AliveServerListFilter.html
deleted file mode 100644
index 362b5dfa..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/AliveServerListFilter.html
+++ /dev/null
@@ -1,299 +0,0 @@
-
-
-
-
-
-
-AliveServerListFilter (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.discovery.filters.AliveServerListFilter
-
-
-
-
-
-
-
-All Implemented Interfaces:
-com.netflix.loadbalancer.ServerListFilter<com.netflix.loadbalancer.Server>
-
-
-Deprecated.
-
-@Deprecated
-public class AliveServerListFilter
-extends Object
-implements com.netflix.loadbalancer.ServerListFilter<com.netflix.loadbalancer.Server>
-Server filter: returns only alive servers. Each consul agent runs a serf agent which is
- a member of the serf gossip pool. The serf status (alive/failed/etc) is reflected in 2
- consul APIs: in the agent API and in the catalog API. We prefer the agent API because
- it is most up to date (or perhaps we should intersect them and pick members that are
- live in both).
-
-Author:
-nicu marasoiu on 10.03.2015.
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/FilteringAgentClient.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/FilteringAgentClient.html
deleted file mode 100644
index 0972b1d3..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/FilteringAgentClient.html
+++ /dev/null
@@ -1,297 +0,0 @@
-
-
-
-
-
-
-FilteringAgentClient (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.discovery.filters.FilteringAgentClient
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-FilteringAgentClient (com.ecwid.consul.v1.ConsulClient client)
-Deprecated.
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/ServiceCheckServerListFilter.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/ServiceCheckServerListFilter.html
deleted file mode 100644
index 7ccd7837..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/ServiceCheckServerListFilter.html
+++ /dev/null
@@ -1,291 +0,0 @@
-
-
-
-
-
-
-ServiceCheckServerListFilter (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.discovery.filters.ServiceCheckServerListFilter
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/class-use/AliveServerListFilter.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/class-use/AliveServerListFilter.html
deleted file mode 100644
index 3a85f96a..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/class-use/AliveServerListFilter.html
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.discovery.filters.AliveServerListFilter (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of org.springframework.cloud.consul.discovery.filters.AliveServerListFilter
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/class-use/FilteringAgentClient.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/class-use/FilteringAgentClient.html
deleted file mode 100644
index 5c0d8315..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/class-use/FilteringAgentClient.html
+++ /dev/null
@@ -1,166 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.discovery.filters.FilteringAgentClient (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/class-use/ServiceCheckServerListFilter.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/class-use/ServiceCheckServerListFilter.html
deleted file mode 100644
index 2691a9b6..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/class-use/ServiceCheckServerListFilter.html
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.discovery.filters.ServiceCheckServerListFilter (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of org.springframework.cloud.consul.discovery.filters.ServiceCheckServerListFilter
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/package-frame.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/package-frame.html
deleted file mode 100644
index b2180179..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/package-frame.html
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-org.springframework.cloud.consul.discovery.filters (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/package-summary.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/package-summary.html
deleted file mode 100644
index c0dd4eac..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/package-summary.html
+++ /dev/null
@@ -1,152 +0,0 @@
-
-
-
-
-
-
-org.springframework.cloud.consul.discovery.filters (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/package-tree.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/package-tree.html
deleted file mode 100644
index ad166c04..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/package-tree.html
+++ /dev/null
@@ -1,141 +0,0 @@
-
-
-
-
-
-
-org.springframework.cloud.consul.discovery.filters Class Hierarchy (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/package-use.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/package-use.html
deleted file mode 100644
index b42c4e63..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/filters/package-use.html
+++ /dev/null
@@ -1,161 +0,0 @@
-
-
-
-
-
-
-Uses of Package org.springframework.cloud.consul.discovery.filters (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/package-frame.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/package-frame.html
deleted file mode 100644
index 1f437c72..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/package-frame.html
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
-
-org.springframework.cloud.consul.discovery (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/package-summary.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/package-summary.html
deleted file mode 100644
index 54b0b58b..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/package-summary.html
+++ /dev/null
@@ -1,207 +0,0 @@
-
-
-
-
-
-
-org.springframework.cloud.consul.discovery (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/package-tree.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/package-tree.html
deleted file mode 100644
index 240301d8..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/package-tree.html
+++ /dev/null
@@ -1,165 +0,0 @@
-
-
-
-
-
-
-org.springframework.cloud.consul.discovery Class Hierarchy (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
Class Hierarchy
-
-java.lang.Object
-
-org.springframework.cloud.client.discovery.AbstractDiscoveryLifecycle (implements org.springframework.context.ApplicationContextAware, org.springframework.context.ApplicationListener<E>, org.springframework.cloud.client.discovery.DiscoveryLifecycle)
-
-
-com.netflix.loadbalancer.AbstractServerList<T> (implements com.netflix.client.IClientConfigAware, com.netflix.loadbalancer.ServerList<T>)
-
-
-org.springframework.cloud.consul.discovery.ConsulCatalogWatch (implements org.springframework.context.ApplicationEventPublisherAware)
-org.springframework.cloud.consul.discovery.ConsulDiscoveryClient (implements org.springframework.cloud.client.discovery.DiscoveryClient)
-org.springframework.cloud.consul.discovery.ConsulDiscoveryClientConfiguration
-org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties
-org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties.Lifecycle
-org.springframework.cloud.consul.discovery.ConsulPing (implements com.netflix.loadbalancer.IPing)
-org.springframework.cloud.consul.discovery.ConsulRibbonClientConfiguration
-org.springframework.cloud.consul.discovery.ConsulServerUtils
-org.springframework.cloud.consul.discovery.HealthServiceServerListFilter (implements com.netflix.loadbalancer.ServerListFilter<T>)
-org.springframework.cloud.consul.discovery.HeartbeatProperties
-org.springframework.cloud.consul.discovery.RibbonConsulAutoConfiguration
-com.netflix.loadbalancer.Server
-
-
-org.springframework.cloud.consul.discovery.TtlScheduler
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/package-use.html b/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/package-use.html
deleted file mode 100644
index 5b29b0bb..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/org/springframework/cloud/consul/discovery/package-use.html
+++ /dev/null
@@ -1,202 +0,0 @@
-
-
-
-
-
-
-Uses of Package org.springframework.cloud.consul.discovery (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/overview-frame.html b/spring-cloud-consul-discovery/target/apidocs/overview-frame.html
deleted file mode 100644
index 727fecde..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/overview-frame.html
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
-Overview List (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/overview-summary.html b/spring-cloud-consul-discovery/target/apidocs/overview-summary.html
deleted file mode 100644
index 6f0cb826..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/overview-summary.html
+++ /dev/null
@@ -1,148 +0,0 @@
-
-
-
-
-
-
-Overview (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/overview-tree.html b/spring-cloud-consul-discovery/target/apidocs/overview-tree.html
deleted file mode 100644
index e1cc390b..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/overview-tree.html
+++ /dev/null
@@ -1,172 +0,0 @@
-
-
-
-
-
-
-Class Hierarchy (Spring Cloud Consul Discovery 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-discovery/target/apidocs/package-list b/spring-cloud-consul-discovery/target/apidocs/package-list
deleted file mode 100644
index c09e4657..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/package-list
+++ /dev/null
@@ -1,3 +0,0 @@
-org.springframework.cloud.consul.discovery
-org.springframework.cloud.consul.discovery.configclient
-org.springframework.cloud.consul.discovery.filters
diff --git a/spring-cloud-consul-discovery/target/apidocs/script.js b/spring-cloud-consul-discovery/target/apidocs/script.js
deleted file mode 100644
index b3463569..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/script.js
+++ /dev/null
@@ -1,30 +0,0 @@
-function show(type)
-{
- count = 0;
- for (var key in methods) {
- var row = document.getElementById(key);
- if ((methods[key] & type) != 0) {
- row.style.display = '';
- row.className = (count++ % 2) ? rowColor : altColor;
- }
- else
- row.style.display = 'none';
- }
- updateTabs(type);
-}
-
-function updateTabs(type)
-{
- for (var value in tabs) {
- var sNode = document.getElementById(tabs[value][0]);
- var spanNode = sNode.firstChild;
- if (value == type) {
- sNode.className = activeTableTab;
- spanNode.innerHTML = tabs[value][1];
- }
- else {
- sNode.className = tableTab;
- spanNode.innerHTML = "" + tabs[value][1] + " ";
- }
- }
-}
diff --git a/spring-cloud-consul-discovery/target/apidocs/stylesheet.css b/spring-cloud-consul-discovery/target/apidocs/stylesheet.css
deleted file mode 100644
index 98055b22..00000000
--- a/spring-cloud-consul-discovery/target/apidocs/stylesheet.css
+++ /dev/null
@@ -1,574 +0,0 @@
-/* Javadoc style sheet */
-/*
-Overall document style
-*/
-
-@import url('resources/fonts/dejavu.css');
-
-body {
- background-color:#ffffff;
- color:#353833;
- font-family:'DejaVu Sans', Arial, Helvetica, sans-serif;
- font-size:14px;
- margin:0;
-}
-a:link, a:visited {
- text-decoration:none;
- color:#4A6782;
-}
-a:hover, a:focus {
- text-decoration:none;
- color:#bb7a2a;
-}
-a:active {
- text-decoration:none;
- color:#4A6782;
-}
-a[name] {
- color:#353833;
-}
-a[name]:hover {
- text-decoration:none;
- color:#353833;
-}
-pre {
- font-family:'DejaVu Sans Mono', monospace;
- font-size:14px;
-}
-h1 {
- font-size:20px;
-}
-h2 {
- font-size:18px;
-}
-h3 {
- font-size:16px;
- font-style:italic;
-}
-h4 {
- font-size:13px;
-}
-h5 {
- font-size:12px;
-}
-h6 {
- font-size:11px;
-}
-ul {
- list-style-type:disc;
-}
-code, tt {
- font-family:'DejaVu Sans Mono', monospace;
- font-size:14px;
- padding-top:4px;
- margin-top:8px;
- line-height:1.4em;
-}
-dt code {
- font-family:'DejaVu Sans Mono', monospace;
- font-size:14px;
- padding-top:4px;
-}
-table tr td dt code {
- font-family:'DejaVu Sans Mono', monospace;
- font-size:14px;
- vertical-align:top;
- padding-top:4px;
-}
-sup {
- font-size:8px;
-}
-/*
-Document title and Copyright styles
-*/
-.clear {
- clear:both;
- height:0px;
- overflow:hidden;
-}
-.aboutLanguage {
- float:right;
- padding:0px 21px;
- font-size:11px;
- z-index:200;
- margin-top:-9px;
-}
-.legalCopy {
- margin-left:.5em;
-}
-.bar a, .bar a:link, .bar a:visited, .bar a:active {
- color:#FFFFFF;
- text-decoration:none;
-}
-.bar a:hover, .bar a:focus {
- color:#bb7a2a;
-}
-.tab {
- background-color:#0066FF;
- color:#ffffff;
- padding:8px;
- width:5em;
- font-weight:bold;
-}
-/*
-Navigation bar styles
-*/
-.bar {
- background-color:#4D7A97;
- color:#FFFFFF;
- padding:.8em .5em .4em .8em;
- height:auto;/*height:1.8em;*/
- font-size:11px;
- margin:0;
-}
-.topNav {
- background-color:#4D7A97;
- color:#FFFFFF;
- float:left;
- padding:0;
- width:100%;
- clear:right;
- height:2.8em;
- padding-top:10px;
- overflow:hidden;
- font-size:12px;
-}
-.bottomNav {
- margin-top:10px;
- background-color:#4D7A97;
- color:#FFFFFF;
- float:left;
- padding:0;
- width:100%;
- clear:right;
- height:2.8em;
- padding-top:10px;
- overflow:hidden;
- font-size:12px;
-}
-.subNav {
- background-color:#dee3e9;
- float:left;
- width:100%;
- overflow:hidden;
- font-size:12px;
-}
-.subNav div {
- clear:left;
- float:left;
- padding:0 0 5px 6px;
- text-transform:uppercase;
-}
-ul.navList, ul.subNavList {
- float:left;
- margin:0 25px 0 0;
- padding:0;
-}
-ul.navList li{
- list-style:none;
- float:left;
- padding: 5px 6px;
- text-transform:uppercase;
-}
-ul.subNavList li{
- list-style:none;
- float:left;
-}
-.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited {
- color:#FFFFFF;
- text-decoration:none;
- text-transform:uppercase;
-}
-.topNav a:hover, .bottomNav a:hover {
- text-decoration:none;
- color:#bb7a2a;
- text-transform:uppercase;
-}
-.navBarCell1Rev {
- background-color:#F8981D;
- color:#253441;
- margin: auto 5px;
-}
-.skipNav {
- position:absolute;
- top:auto;
- left:-9999px;
- overflow:hidden;
-}
-/*
-Page header and footer styles
-*/
-.header, .footer {
- clear:both;
- margin:0 20px;
- padding:5px 0 0 0;
-}
-.indexHeader {
- margin:10px;
- position:relative;
-}
-.indexHeader span{
- margin-right:15px;
-}
-.indexHeader h1 {
- font-size:13px;
-}
-.title {
- color:#2c4557;
- margin:10px 0;
-}
-.subTitle {
- margin:5px 0 0 0;
-}
-.header ul {
- margin:0 0 15px 0;
- padding:0;
-}
-.footer ul {
- margin:20px 0 5px 0;
-}
-.header ul li, .footer ul li {
- list-style:none;
- font-size:13px;
-}
-/*
-Heading styles
-*/
-div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 {
- background-color:#dee3e9;
- border:1px solid #d0d9e0;
- margin:0 0 6px -8px;
- padding:7px 5px;
-}
-ul.blockList ul.blockList ul.blockList li.blockList h3 {
- background-color:#dee3e9;
- border:1px solid #d0d9e0;
- margin:0 0 6px -8px;
- padding:7px 5px;
-}
-ul.blockList ul.blockList li.blockList h3 {
- padding:0;
- margin:15px 0;
-}
-ul.blockList li.blockList h2 {
- padding:0px 0 20px 0;
-}
-/*
-Page layout container styles
-*/
-.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer {
- clear:both;
- padding:10px 20px;
- position:relative;
-}
-.indexContainer {
- margin:10px;
- position:relative;
- font-size:12px;
-}
-.indexContainer h2 {
- font-size:13px;
- padding:0 0 3px 0;
-}
-.indexContainer ul {
- margin:0;
- padding:0;
-}
-.indexContainer ul li {
- list-style:none;
- padding-top:2px;
-}
-.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt {
- font-size:12px;
- font-weight:bold;
- margin:10px 0 0 0;
- color:#4E4E4E;
-}
-.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd {
- margin:5px 0 10px 0px;
- font-size:14px;
- font-family:'DejaVu Sans Mono',monospace;
-}
-.serializedFormContainer dl.nameValue dt {
- margin-left:1px;
- font-size:1.1em;
- display:inline;
- font-weight:bold;
-}
-.serializedFormContainer dl.nameValue dd {
- margin:0 0 0 1px;
- font-size:1.1em;
- display:inline;
-}
-/*
-List styles
-*/
-ul.horizontal li {
- display:inline;
- font-size:0.9em;
-}
-ul.inheritance {
- margin:0;
- padding:0;
-}
-ul.inheritance li {
- display:inline;
- list-style:none;
-}
-ul.inheritance li ul.inheritance {
- margin-left:15px;
- padding-left:15px;
- padding-top:1px;
-}
-ul.blockList, ul.blockListLast {
- margin:10px 0 10px 0;
- padding:0;
-}
-ul.blockList li.blockList, ul.blockListLast li.blockList {
- list-style:none;
- margin-bottom:15px;
- line-height:1.4;
-}
-ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList {
- padding:0px 20px 5px 10px;
- border:1px solid #ededed;
- background-color:#f8f8f8;
-}
-ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList {
- padding:0 0 5px 8px;
- background-color:#ffffff;
- border:none;
-}
-ul.blockList ul.blockList ul.blockList ul.blockList li.blockList {
- margin-left:0;
- padding-left:0;
- padding-bottom:15px;
- border:none;
-}
-ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast {
- list-style:none;
- border-bottom:none;
- padding-bottom:0;
-}
-table tr td dl, table tr td dl dt, table tr td dl dd {
- margin-top:0;
- margin-bottom:1px;
-}
-/*
-Table styles
-*/
-.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary {
- width:100%;
- border-left:1px solid #EEE;
- border-right:1px solid #EEE;
- border-bottom:1px solid #EEE;
-}
-.overviewSummary, .memberSummary {
- padding:0px;
-}
-.overviewSummary caption, .memberSummary caption, .typeSummary caption,
-.useSummary caption, .constantsSummary caption, .deprecatedSummary caption {
- position:relative;
- text-align:left;
- background-repeat:no-repeat;
- color:#253441;
- font-weight:bold;
- clear:none;
- overflow:hidden;
- padding:0px;
- padding-top:10px;
- padding-left:1px;
- margin:0px;
- white-space:pre;
-}
-.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link,
-.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link,
-.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover,
-.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover,
-.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active,
-.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active,
-.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited,
-.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited {
- color:#FFFFFF;
-}
-.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span,
-.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span {
- white-space:nowrap;
- padding-top:5px;
- padding-left:12px;
- padding-right:12px;
- padding-bottom:7px;
- display:inline-block;
- float:left;
- background-color:#F8981D;
- border: none;
- height:16px;
-}
-.memberSummary caption span.activeTableTab span {
- white-space:nowrap;
- padding-top:5px;
- padding-left:12px;
- padding-right:12px;
- margin-right:3px;
- display:inline-block;
- float:left;
- background-color:#F8981D;
- height:16px;
-}
-.memberSummary caption span.tableTab span {
- white-space:nowrap;
- padding-top:5px;
- padding-left:12px;
- padding-right:12px;
- margin-right:3px;
- display:inline-block;
- float:left;
- background-color:#4D7A97;
- height:16px;
-}
-.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab {
- padding-top:0px;
- padding-left:0px;
- padding-right:0px;
- background-image:none;
- float:none;
- display:inline;
-}
-.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd,
-.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd {
- display:none;
- width:5px;
- position:relative;
- float:left;
- background-color:#F8981D;
-}
-.memberSummary .activeTableTab .tabEnd {
- display:none;
- width:5px;
- margin-right:3px;
- position:relative;
- float:left;
- background-color:#F8981D;
-}
-.memberSummary .tableTab .tabEnd {
- display:none;
- width:5px;
- margin-right:3px;
- position:relative;
- background-color:#4D7A97;
- float:left;
-
-}
-.overviewSummary td, .memberSummary td, .typeSummary td,
-.useSummary td, .constantsSummary td, .deprecatedSummary td {
- text-align:left;
- padding:0px 0px 12px 10px;
-}
-th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th,
-td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{
- vertical-align:top;
- padding-right:0px;
- padding-top:8px;
- padding-bottom:3px;
-}
-th.colFirst, th.colLast, th.colOne, .constantsSummary th {
- background:#dee3e9;
- text-align:left;
- padding:8px 3px 3px 7px;
-}
-td.colFirst, th.colFirst {
- white-space:nowrap;
- font-size:13px;
-}
-td.colLast, th.colLast {
- font-size:13px;
-}
-td.colOne, th.colOne {
- font-size:13px;
-}
-.overviewSummary td.colFirst, .overviewSummary th.colFirst,
-.useSummary td.colFirst, .useSummary th.colFirst,
-.overviewSummary td.colOne, .overviewSummary th.colOne,
-.memberSummary td.colFirst, .memberSummary th.colFirst,
-.memberSummary td.colOne, .memberSummary th.colOne,
-.typeSummary td.colFirst{
- width:25%;
- vertical-align:top;
-}
-td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover {
- font-weight:bold;
-}
-.tableSubHeadingColor {
- background-color:#EEEEFF;
-}
-.altColor {
- background-color:#FFFFFF;
-}
-.rowColor {
- background-color:#EEEEEF;
-}
-/*
-Content styles
-*/
-.description pre {
- margin-top:0;
-}
-.deprecatedContent {
- margin:0;
- padding:10px 0;
-}
-.docSummary {
- padding:0;
-}
-
-ul.blockList ul.blockList ul.blockList li.blockList h3 {
- font-style:normal;
-}
-
-div.block {
- font-size:14px;
- font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
-}
-
-td.colLast div {
- padding-top:0px;
-}
-
-
-td.colLast a {
- padding-bottom:3px;
-}
-/*
-Formatting effect styles
-*/
-.sourceLineNo {
- color:green;
- padding:0 30px 0 0;
-}
-h1.hidden {
- visibility:hidden;
- overflow:hidden;
- font-size:10px;
-}
-.block {
- display:block;
- margin:3px 10px 2px 0px;
- color:#474747;
-}
-.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink,
-.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel,
-.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink {
- font-weight:bold;
-}
-.deprecationComment, .emphasizedPhrase, .interfaceName {
- font-style:italic;
-}
-
-div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase,
-div.block div.block span.interfaceName {
- font-style:normal;
-}
-
-div.contentContainer ul.blockList li.blockList h2{
- padding-bottom:0px;
-}
diff --git a/spring-cloud-consul-discovery/target/classes/META-INF/spring-configuration-metadata.json b/spring-cloud-consul-discovery/target/classes/META-INF/spring-configuration-metadata.json
deleted file mode 100644
index 4cebfd9b..00000000
--- a/spring-cloud-consul-discovery/target/classes/META-INF/spring-configuration-metadata.json
+++ /dev/null
@@ -1,226 +0,0 @@
-{
- "groups": [
- {
- "name": "spring.cloud.consul.discovery",
- "type": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties"
- },
- {
- "name": "spring.cloud.consul.discovery.heartbeat",
- "type": "org.springframework.cloud.consul.discovery.HeartbeatProperties",
- "sourceType": "org.springframework.cloud.consul.discovery.HeartbeatProperties"
- },
- {
- "name": "spring.cloud.consul.discovery.lifecycle",
- "type": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties$Lifecycle",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties"
- }
- ],
- "properties": [
- {
- "name": "spring.cloud.consul.discovery.acl-token",
- "type": "java.lang.String",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties"
- },
- {
- "name": "spring.cloud.consul.discovery.catalog-services-watch-delay",
- "type": "java.lang.Integer",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties",
- "defaultValue": 10
- },
- {
- "name": "spring.cloud.consul.discovery.catalog-services-watch-timeout",
- "type": "java.lang.Integer",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties",
- "defaultValue": 2
- },
- {
- "name": "spring.cloud.consul.discovery.default-query-tag",
- "type": "java.lang.String",
- "description": "Tag to query for in service list if one is not listed in serverListQueryTags.",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties"
- },
- {
- "name": "spring.cloud.consul.discovery.enabled",
- "type": "java.lang.Boolean",
- "description": "Is service discovery enabled?",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties",
- "defaultValue": true
- },
- {
- "name": "spring.cloud.consul.discovery.health-check-interval",
- "type": "java.lang.String",
- "description": "How often to perform the health check (e.g. 10s)",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties",
- "defaultValue": "10s"
- },
- {
- "name": "spring.cloud.consul.discovery.health-check-path",
- "type": "java.lang.String",
- "description": "Alternate server path to invoke for health checking",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties",
- "defaultValue": "/health"
- },
- {
- "name": "spring.cloud.consul.discovery.health-check-timeout",
- "type": "java.lang.String",
- "description": "Timeout for health check (e.g. 10s)",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties"
- },
- {
- "name": "spring.cloud.consul.discovery.health-check-url",
- "type": "java.lang.String",
- "description": "Custom health check url to override default",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties"
- },
- {
- "name": "spring.cloud.consul.discovery.heartbeat.enabled",
- "type": "java.lang.Boolean",
- "sourceType": "org.springframework.cloud.consul.discovery.HeartbeatProperties",
- "defaultValue": false
- },
- {
- "name": "spring.cloud.consul.discovery.heartbeat.heartbeat-interval",
- "type": "org.joda.time.Period",
- "sourceType": "org.springframework.cloud.consul.discovery.HeartbeatProperties"
- },
- {
- "name": "spring.cloud.consul.discovery.heartbeat.interval-ratio",
- "type": "java.lang.Double",
- "sourceType": "org.springframework.cloud.consul.discovery.HeartbeatProperties"
- },
- {
- "name": "spring.cloud.consul.discovery.heartbeat.ttl-unit",
- "type": "java.lang.String",
- "sourceType": "org.springframework.cloud.consul.discovery.HeartbeatProperties",
- "defaultValue": "s"
- },
- {
- "name": "spring.cloud.consul.discovery.heartbeat.ttl-value",
- "type": "java.lang.Integer",
- "sourceType": "org.springframework.cloud.consul.discovery.HeartbeatProperties",
- "defaultValue": 30
- },
- {
- "name": "spring.cloud.consul.discovery.host-info",
- "type": "org.springframework.cloud.commons.util.InetUtils$HostInfo",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties"
- },
- {
- "name": "spring.cloud.consul.discovery.hostname",
- "type": "java.lang.String",
- "description": "Hostname to use when accessing server",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties"
- },
- {
- "name": "spring.cloud.consul.discovery.hostname",
- "type": "java.lang.String",
- "description": "Hostname to use when accessing server",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties"
- },
- {
- "name": "spring.cloud.consul.discovery.instance-id",
- "type": "java.lang.String",
- "description": "Unique service instance id",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties"
- },
- {
- "name": "spring.cloud.consul.discovery.ip-address",
- "type": "java.lang.String",
- "description": "IP address to use when accessing service (must also set preferIpAddress\n\t\t\tto use)",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties"
- },
- {
- "name": "spring.cloud.consul.discovery.lifecycle.enabled",
- "type": "java.lang.Boolean",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties$Lifecycle",
- "defaultValue": true
- },
- {
- "name": "spring.cloud.consul.discovery.management-port",
- "type": "java.lang.Integer",
- "description": "Port to register the management service under (defaults to management port)",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties"
- },
- {
- "name": "spring.cloud.consul.discovery.management-suffix",
- "type": "java.lang.String",
- "description": "Suffix to use when registering management service",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties",
- "defaultValue": "management"
- },
- {
- "name": "spring.cloud.consul.discovery.management-tags",
- "type": "java.util.List",
- "description": "Tags to use when registering management service",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties"
- },
- {
- "name": "spring.cloud.consul.discovery.port",
- "type": "java.lang.Integer",
- "description": "Port to register the service under (defaults to listening port)",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties"
- },
- {
- "name": "spring.cloud.consul.discovery.prefer-agent-address",
- "type": "java.lang.Boolean",
- "description": "Source of how we will determine the address to use",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties",
- "defaultValue": false
- },
- {
- "name": "spring.cloud.consul.discovery.prefer-ip-address",
- "type": "java.lang.Boolean",
- "description": "Use ip address rather than hostname during registration",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties",
- "defaultValue": false
- },
- {
- "name": "spring.cloud.consul.discovery.query-passing",
- "type": "java.lang.Boolean",
- "description": "Add the 'passing` parameter to /v1/health/service/serviceName.\n This pushes health check passing to the server.",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties",
- "defaultValue": false
- },
- {
- "name": "spring.cloud.consul.discovery.register",
- "type": "java.lang.Boolean",
- "description": "Register as a service in consul.",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties",
- "defaultValue": true
- },
- {
- "name": "spring.cloud.consul.discovery.register-health-check",
- "type": "java.lang.Boolean",
- "description": "Register health check in consul. Useful during development of a service.",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties",
- "defaultValue": true
- },
- {
- "name": "spring.cloud.consul.discovery.scheme",
- "type": "java.lang.String",
- "description": "Whether to register an http or https service",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties",
- "defaultValue": "http"
- },
- {
- "name": "spring.cloud.consul.discovery.server-list-query-tags",
- "type": "java.util.Map",
- "description": "Map of serviceId's -> tag to query for in server list.\n This allows filtering services by a single tag.",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties"
- },
- {
- "name": "spring.cloud.consul.discovery.service-name",
- "type": "java.lang.String",
- "description": "Service name",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties"
- },
- {
- "name": "spring.cloud.consul.discovery.tags",
- "type": "java.util.List",
- "description": "Tags to use when registering service",
- "sourceType": "org.springframework.cloud.consul.discovery.ConsulDiscoveryProperties"
- }
- ],
- "hints": []
-}
\ No newline at end of file
diff --git a/spring-cloud-consul-discovery/target/classes/META-INF/spring.factories b/spring-cloud-consul-discovery/target/classes/META-INF/spring.factories
deleted file mode 100644
index 3f6d6ffa..00000000
--- a/spring-cloud-consul-discovery/target/classes/META-INF/spring.factories
+++ /dev/null
@@ -1,12 +0,0 @@
-org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
-org.springframework.cloud.consul.discovery.RibbonConsulAutoConfiguration,\
-org.springframework.cloud.consul.discovery.configclient.ConsulConfigServerAutoConfiguration
-
-# Discovery Client Configuration
-org.springframework.cloud.client.discovery.EnableDiscoveryClient=\
-org.springframework.cloud.consul.discovery.ConsulDiscoveryClientConfiguration
-
-
-org.springframework.cloud.bootstrap.BootstrapConfiguration=\
-org.springframework.cloud.consul.discovery.configclient.ConsulDiscoveryClientConfigServiceBootstrapConfiguration
-
diff --git a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulCatalogWatch.class b/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulCatalogWatch.class
deleted file mode 100644
index 7b262394..00000000
Binary files a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulCatalogWatch.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClient.class b/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClient.class
deleted file mode 100644
index b1228d23..00000000
Binary files a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClient.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientConfiguration.class b/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientConfiguration.class
deleted file mode 100644
index 48fd0107..00000000
Binary files a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientConfiguration.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryProperties$Lifecycle.class b/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryProperties$Lifecycle.class
deleted file mode 100644
index 61249555..00000000
Binary files a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryProperties$Lifecycle.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryProperties.class b/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryProperties.class
deleted file mode 100644
index f058adb4..00000000
Binary files a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryProperties.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulLifecycle.class b/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulLifecycle.class
deleted file mode 100644
index a3939708..00000000
Binary files a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulLifecycle.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulPing.class b/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulPing.class
deleted file mode 100644
index eb872088..00000000
Binary files a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulPing.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulRibbonClientConfiguration.class b/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulRibbonClientConfiguration.class
deleted file mode 100644
index d45fd473..00000000
Binary files a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulRibbonClientConfiguration.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulServer$1.class b/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulServer$1.class
deleted file mode 100644
index 1491e8de..00000000
Binary files a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulServer$1.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulServer.class b/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulServer.class
deleted file mode 100644
index 96e8e02a..00000000
Binary files a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulServer.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulServerList.class b/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulServerList.class
deleted file mode 100644
index f90902ca..00000000
Binary files a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulServerList.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulServerUtils.class b/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulServerUtils.class
deleted file mode 100644
index 3f7d924b..00000000
Binary files a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/ConsulServerUtils.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/HealthServiceServerListFilter.class b/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/HealthServiceServerListFilter.class
deleted file mode 100644
index eaee856b..00000000
Binary files a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/HealthServiceServerListFilter.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/HeartbeatProperties.class b/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/HeartbeatProperties.class
deleted file mode 100644
index 3ccd1530..00000000
Binary files a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/HeartbeatProperties.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/RibbonConsulAutoConfiguration.class b/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/RibbonConsulAutoConfiguration.class
deleted file mode 100644
index c4859ea8..00000000
Binary files a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/RibbonConsulAutoConfiguration.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/TtlScheduler$ConsulHeartbeatTask.class b/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/TtlScheduler$ConsulHeartbeatTask.class
deleted file mode 100644
index 7e6e1192..00000000
Binary files a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/TtlScheduler$ConsulHeartbeatTask.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/TtlScheduler.class b/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/TtlScheduler.class
deleted file mode 100644
index e01c5ad3..00000000
Binary files a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/TtlScheduler.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/configclient/ConsulConfigServerAutoConfiguration.class b/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/configclient/ConsulConfigServerAutoConfiguration.class
deleted file mode 100644
index 8c3a40ef..00000000
Binary files a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/configclient/ConsulConfigServerAutoConfiguration.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/configclient/ConsulDiscoveryClientConfigServiceBootstrapConfiguration.class b/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/configclient/ConsulDiscoveryClientConfigServiceBootstrapConfiguration.class
deleted file mode 100644
index 92123540..00000000
Binary files a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/configclient/ConsulDiscoveryClientConfigServiceBootstrapConfiguration.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/filters/AliveServerListFilter.class b/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/filters/AliveServerListFilter.class
deleted file mode 100644
index a6dc97b9..00000000
Binary files a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/filters/AliveServerListFilter.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/filters/FilteringAgentClient.class b/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/filters/FilteringAgentClient.class
deleted file mode 100644
index e253295f..00000000
Binary files a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/filters/FilteringAgentClient.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/filters/ServiceCheckServerListFilter.class b/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/filters/ServiceCheckServerListFilter.class
deleted file mode 100644
index 18be1d8a..00000000
Binary files a/spring-cloud-consul-discovery/target/classes/org/springframework/cloud/consul/discovery/filters/ServiceCheckServerListFilter.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml b/spring-cloud-consul-discovery/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml
deleted file mode 100644
index 8b89c977..00000000
--- a/spring-cloud-consul-discovery/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
- src/main/javadoc
-
diff --git a/spring-cloud-consul-discovery/target/javadoc-bundle-options/package-list b/spring-cloud-consul-discovery/target/javadoc-bundle-options/package-list
deleted file mode 100644
index b52fe94b..00000000
--- a/spring-cloud-consul-discovery/target/javadoc-bundle-options/package-list
+++ /dev/null
@@ -1,209 +0,0 @@
-java.applet
-java.awt
-java.awt.color
-java.awt.datatransfer
-java.awt.dnd
-java.awt.event
-java.awt.font
-java.awt.geom
-java.awt.im
-java.awt.im.spi
-java.awt.image
-java.awt.image.renderable
-java.awt.print
-java.beans
-java.beans.beancontext
-java.io
-java.lang
-java.lang.annotation
-java.lang.instrument
-java.lang.invoke
-java.lang.management
-java.lang.ref
-java.lang.reflect
-java.math
-java.net
-java.nio
-java.nio.channels
-java.nio.channels.spi
-java.nio.charset
-java.nio.charset.spi
-java.nio.file
-java.nio.file.attribute
-java.nio.file.spi
-java.rmi
-java.rmi.activation
-java.rmi.dgc
-java.rmi.registry
-java.rmi.server
-java.security
-java.security.acl
-java.security.cert
-java.security.interfaces
-java.security.spec
-java.sql
-java.text
-java.text.spi
-java.util
-java.util.concurrent
-java.util.concurrent.atomic
-java.util.concurrent.locks
-java.util.jar
-java.util.logging
-java.util.prefs
-java.util.regex
-java.util.spi
-java.util.zip
-javax.accessibility
-javax.activation
-javax.activity
-javax.annotation
-javax.annotation.processing
-javax.crypto
-javax.crypto.interfaces
-javax.crypto.spec
-javax.imageio
-javax.imageio.event
-javax.imageio.metadata
-javax.imageio.plugins.bmp
-javax.imageio.plugins.jpeg
-javax.imageio.spi
-javax.imageio.stream
-javax.jws
-javax.jws.soap
-javax.lang.model
-javax.lang.model.element
-javax.lang.model.type
-javax.lang.model.util
-javax.management
-javax.management.loading
-javax.management.modelmbean
-javax.management.monitor
-javax.management.openmbean
-javax.management.relation
-javax.management.remote
-javax.management.remote.rmi
-javax.management.timer
-javax.naming
-javax.naming.directory
-javax.naming.event
-javax.naming.ldap
-javax.naming.spi
-javax.net
-javax.net.ssl
-javax.print
-javax.print.attribute
-javax.print.attribute.standard
-javax.print.event
-javax.rmi
-javax.rmi.CORBA
-javax.rmi.ssl
-javax.script
-javax.security.auth
-javax.security.auth.callback
-javax.security.auth.kerberos
-javax.security.auth.login
-javax.security.auth.spi
-javax.security.auth.x500
-javax.security.cert
-javax.security.sasl
-javax.sound.midi
-javax.sound.midi.spi
-javax.sound.sampled
-javax.sound.sampled.spi
-javax.sql
-javax.sql.rowset
-javax.sql.rowset.serial
-javax.sql.rowset.spi
-javax.swing
-javax.swing.border
-javax.swing.colorchooser
-javax.swing.event
-javax.swing.filechooser
-javax.swing.plaf
-javax.swing.plaf.basic
-javax.swing.plaf.metal
-javax.swing.plaf.multi
-javax.swing.plaf.nimbus
-javax.swing.plaf.synth
-javax.swing.table
-javax.swing.text
-javax.swing.text.html
-javax.swing.text.html.parser
-javax.swing.text.rtf
-javax.swing.tree
-javax.swing.undo
-javax.tools
-javax.transaction
-javax.transaction.xa
-javax.xml
-javax.xml.bind
-javax.xml.bind.annotation
-javax.xml.bind.annotation.adapters
-javax.xml.bind.attachment
-javax.xml.bind.helpers
-javax.xml.bind.util
-javax.xml.crypto
-javax.xml.crypto.dom
-javax.xml.crypto.dsig
-javax.xml.crypto.dsig.dom
-javax.xml.crypto.dsig.keyinfo
-javax.xml.crypto.dsig.spec
-javax.xml.datatype
-javax.xml.namespace
-javax.xml.parsers
-javax.xml.soap
-javax.xml.stream
-javax.xml.stream.events
-javax.xml.stream.util
-javax.xml.transform
-javax.xml.transform.dom
-javax.xml.transform.sax
-javax.xml.transform.stax
-javax.xml.transform.stream
-javax.xml.validation
-javax.xml.ws
-javax.xml.ws.handler
-javax.xml.ws.handler.soap
-javax.xml.ws.http
-javax.xml.ws.soap
-javax.xml.ws.spi
-javax.xml.ws.spi.http
-javax.xml.ws.wsaddressing
-javax.xml.xpath
-org.ietf.jgss
-org.omg.CORBA
-org.omg.CORBA.DynAnyPackage
-org.omg.CORBA.ORBPackage
-org.omg.CORBA.TypeCodePackage
-org.omg.CORBA.portable
-org.omg.CORBA_2_3
-org.omg.CORBA_2_3.portable
-org.omg.CosNaming
-org.omg.CosNaming.NamingContextExtPackage
-org.omg.CosNaming.NamingContextPackage
-org.omg.Dynamic
-org.omg.DynamicAny
-org.omg.DynamicAny.DynAnyFactoryPackage
-org.omg.DynamicAny.DynAnyPackage
-org.omg.IOP
-org.omg.IOP.CodecFactoryPackage
-org.omg.IOP.CodecPackage
-org.omg.Messaging
-org.omg.PortableInterceptor
-org.omg.PortableInterceptor.ORBInitInfoPackage
-org.omg.PortableServer
-org.omg.PortableServer.CurrentPackage
-org.omg.PortableServer.POAManagerPackage
-org.omg.PortableServer.POAPackage
-org.omg.PortableServer.ServantLocatorPackage
-org.omg.PortableServer.portable
-org.omg.SendingContext
-org.omg.stub.java.rmi
-org.w3c.dom
-org.w3c.dom.bootstrap
-org.w3c.dom.events
-org.w3c.dom.ls
-org.xml.sax
-org.xml.sax.ext
-org.xml.sax.helpers
diff --git a/spring-cloud-consul-discovery/target/maven-archiver/pom.properties b/spring-cloud-consul-discovery/target/maven-archiver/pom.properties
deleted file mode 100644
index 5e53e4a7..00000000
--- a/spring-cloud-consul-discovery/target/maven-archiver/pom.properties
+++ /dev/null
@@ -1,5 +0,0 @@
-#Generated by Maven
-#Thu Sep 22 13:40:32 UTC 2016
-version=1.1.0.BUILD-SNAPSHOT
-groupId=org.springframework.cloud
-artifactId=spring-cloud-consul-discovery
diff --git a/spring-cloud-consul-discovery/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/spring-cloud-consul-discovery/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
deleted file mode 100644
index 89693980..00000000
--- a/spring-cloud-consul-discovery/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
+++ /dev/null
@@ -1,23 +0,0 @@
-META-INF/spring-configuration-metadata.json
-org/springframework/cloud/consul/discovery/filters/ServiceCheckServerListFilter.class
-org/springframework/cloud/consul/discovery/ConsulDiscoveryProperties.class
-org/springframework/cloud/consul/discovery/HeartbeatProperties.class
-org/springframework/cloud/consul/discovery/ConsulDiscoveryClientConfiguration.class
-org/springframework/cloud/consul/discovery/ConsulServer.class
-org/springframework/cloud/consul/discovery/ConsulRibbonClientConfiguration.class
-org/springframework/cloud/consul/discovery/RibbonConsulAutoConfiguration.class
-org/springframework/cloud/consul/discovery/filters/AliveServerListFilter.class
-org/springframework/cloud/consul/discovery/ConsulServerUtils.class
-org/springframework/cloud/consul/discovery/TtlScheduler.class
-org/springframework/cloud/consul/discovery/ConsulCatalogWatch.class
-org/springframework/cloud/consul/discovery/ConsulDiscoveryClient.class
-org/springframework/cloud/consul/discovery/ConsulServerList.class
-org/springframework/cloud/consul/discovery/ConsulServer$1.class
-org/springframework/cloud/consul/discovery/ConsulDiscoveryProperties$Lifecycle.class
-org/springframework/cloud/consul/discovery/configclient/ConsulDiscoveryClientConfigServiceBootstrapConfiguration.class
-org/springframework/cloud/consul/discovery/HealthServiceServerListFilter.class
-org/springframework/cloud/consul/discovery/configclient/ConsulConfigServerAutoConfiguration.class
-org/springframework/cloud/consul/discovery/ConsulLifecycle.class
-org/springframework/cloud/consul/discovery/filters/FilteringAgentClient.class
-org/springframework/cloud/consul/discovery/TtlScheduler$ConsulHeartbeatTask.class
-org/springframework/cloud/consul/discovery/ConsulPing.class
diff --git a/spring-cloud-consul-discovery/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/spring-cloud-consul-discovery/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
deleted file mode 100644
index 9f681c3b..00000000
--- a/spring-cloud-consul-discovery/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
+++ /dev/null
@@ -1,19 +0,0 @@
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/main/java/org/springframework/cloud/consul/discovery/RibbonConsulAutoConfiguration.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/main/java/org/springframework/cloud/consul/discovery/filters/FilteringAgentClient.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/main/java/org/springframework/cloud/consul/discovery/ConsulPing.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/main/java/org/springframework/cloud/consul/discovery/configclient/ConsulConfigServerAutoConfiguration.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/main/java/org/springframework/cloud/consul/discovery/HealthServiceServerListFilter.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/main/java/org/springframework/cloud/consul/discovery/ConsulDiscoveryProperties.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/main/java/org/springframework/cloud/consul/discovery/ConsulServerUtils.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/main/java/org/springframework/cloud/consul/discovery/ConsulDiscoveryClient.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/main/java/org/springframework/cloud/consul/discovery/ConsulServer.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/main/java/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientConfiguration.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/main/java/org/springframework/cloud/consul/discovery/configclient/ConsulDiscoveryClientConfigServiceBootstrapConfiguration.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/main/java/org/springframework/cloud/consul/discovery/ConsulServerList.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/main/java/org/springframework/cloud/consul/discovery/TtlScheduler.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/main/java/org/springframework/cloud/consul/discovery/filters/ServiceCheckServerListFilter.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/main/java/org/springframework/cloud/consul/discovery/ConsulCatalogWatch.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/main/java/org/springframework/cloud/consul/discovery/HeartbeatProperties.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/main/java/org/springframework/cloud/consul/discovery/ConsulLifecycle.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/main/java/org/springframework/cloud/consul/discovery/ConsulRibbonClientConfiguration.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/main/java/org/springframework/cloud/consul/discovery/filters/AliveServerListFilter.java
diff --git a/spring-cloud-consul-discovery/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst b/spring-cloud-consul-discovery/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst
deleted file mode 100644
index c63ec176..00000000
--- a/spring-cloud-consul-discovery/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst
+++ /dev/null
@@ -1,34 +0,0 @@
-org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedPropsTests.class
-org/springframework/cloud/consul/discovery/ConsulDiscoveryClientAclTests$MyTestConfig.class
-org/springframework/cloud/consul/discovery/ConsulDiscoveryClientTests.class
-org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedTests$CustomConsulLifecycle.class
-org/springframework/cloud/consul/discovery/configclient/ConsulConfigServerAutoConfigurationTests.class
-org/springframework/cloud/consul/discovery/ConsulLifecycleManagementServiceTests$TestConfig.class
-org/springframework/cloud/consul/discovery/ConsulDiscoveryClientAclTests.class
-org/springframework/cloud/consul/discovery/ConsulLifecycleManagementServiceTests.class
-org/springframework/cloud/consul/discovery/ConsulLifecycleTests.class
-org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedManagementServicePortTests$TestConfig.class
-org/springframework/cloud/consul/discovery/HealthServiceServerListFilterTests.class
-org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedTests$MyTestConfig.class
-org/springframework/cloud/consul/discovery/configclient/DiscoveryClientConfigServiceAutoConfigurationTests.class
-org/springframework/cloud/consul/discovery/TtlSchedulerRemoveTest.class
-org/springframework/cloud/consul/discovery/ConsulDiscoveryClientLocalServiceInstanceTests.class
-org/springframework/cloud/consul/discovery/TtlSchedulerTest.class
-org/springframework/cloud/consul/discovery/TestPropsConfig.class
-org/springframework/cloud/consul/discovery/configclient/DiscoveryClientConfigServiceAutoConfigurationTests$EnvironmentKnobbler.class
-org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedManagementServicePortTests.class
-org/springframework/cloud/consul/discovery/ConsulServerListTests.class
-org/springframework/cloud/consul/discovery/ConsulLifecycleRegistrationDisabledTests.class
-org/springframework/cloud/consul/discovery/ConsulDiscoveryClientLocalServiceInstanceTests$LocalServiceTestConfig.class
-org/springframework/cloud/consul/discovery/ConsulDiscoveryPropertiesTests.class
-org/springframework/cloud/consul/discovery/ConsulDiscoveryClientCustomizedTests$MyTestConfig.class
-org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedAgentAddressTests.class
-org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedTests.class
-org/springframework/cloud/consul/discovery/ConsulDiscoveryClientCustomizedTests.class
-org/springframework/cloud/consul/discovery/TestConfig.class
-org/springframework/cloud/consul/discovery/ConsulLifecycleDefaultPortTests.class
-org/springframework/cloud/consul/discovery/ConsulDiscoveryClientTests$MyTestConfig.class
-org/springframework/cloud/consul/discovery/HeartbeatPropertiesTests.class
-org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedServiceNameTests.class
-org/springframework/cloud/consul/discovery/TtlSchedulerRemoveTestConfig.class
-org/springframework/cloud/consul/discovery/TtlSchedulerTestConfig.class
diff --git a/spring-cloud-consul-discovery/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/spring-cloud-consul-discovery/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst
deleted file mode 100644
index 2bbbcd17..00000000
--- a/spring-cloud-consul-discovery/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst
+++ /dev/null
@@ -1,21 +0,0 @@
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/test/java/org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedAgentAddressTests.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/test/java/org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedPropsTests.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/test/java/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientTests.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/test/java/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientCustomizedTests.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/test/java/org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedTests.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/test/java/org/springframework/cloud/consul/discovery/ConsulLifecycleTests.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/test/java/org/springframework/cloud/consul/discovery/TtlSchedulerRemoveTest.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/test/java/org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedServiceNameTests.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/test/java/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientAclTests.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/test/java/org/springframework/cloud/consul/discovery/HealthServiceServerListFilterTests.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/test/java/org/springframework/cloud/consul/discovery/ConsulDiscoveryPropertiesTests.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/test/java/org/springframework/cloud/consul/discovery/ConsulServerListTests.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/test/java/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientLocalServiceInstanceTests.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/test/java/org/springframework/cloud/consul/discovery/configclient/DiscoveryClientConfigServiceAutoConfigurationTests.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/test/java/org/springframework/cloud/consul/discovery/TtlSchedulerTest.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/test/java/org/springframework/cloud/consul/discovery/ConsulLifecycleRegistrationDisabledTests.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/test/java/org/springframework/cloud/consul/discovery/configclient/ConsulConfigServerAutoConfigurationTests.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/test/java/org/springframework/cloud/consul/discovery/HeartbeatPropertiesTests.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/test/java/org/springframework/cloud/consul/discovery/ConsulLifecycleManagementServiceTests.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/test/java/org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedManagementServicePortTests.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-discovery/src/test/java/org/springframework/cloud/consul/discovery/ConsulLifecycleDefaultPortTests.java
diff --git a/spring-cloud-consul-discovery/target/spring-cloud-consul-discovery-1.1.0.BUILD-SNAPSHOT-javadoc.jar b/spring-cloud-consul-discovery/target/spring-cloud-consul-discovery-1.1.0.BUILD-SNAPSHOT-javadoc.jar
deleted file mode 100644
index d339f886..00000000
Binary files a/spring-cloud-consul-discovery/target/spring-cloud-consul-discovery-1.1.0.BUILD-SNAPSHOT-javadoc.jar and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/spring-cloud-consul-discovery-1.1.0.BUILD-SNAPSHOT-sources.jar b/spring-cloud-consul-discovery/target/spring-cloud-consul-discovery-1.1.0.BUILD-SNAPSHOT-sources.jar
deleted file mode 100644
index 5ebad1c8..00000000
Binary files a/spring-cloud-consul-discovery/target/spring-cloud-consul-discovery-1.1.0.BUILD-SNAPSHOT-sources.jar and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/spring-cloud-consul-discovery-1.1.0.BUILD-SNAPSHOT.jar b/spring-cloud-consul-discovery/target/spring-cloud-consul-discovery-1.1.0.BUILD-SNAPSHOT.jar
deleted file mode 100644
index 988b41ee..00000000
Binary files a/spring-cloud-consul-discovery/target/spring-cloud-consul-discovery-1.1.0.BUILD-SNAPSHOT.jar and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/spring-cloud-consul-discovery-1.1.0.RELEASE-javadoc.jar b/spring-cloud-consul-discovery/target/spring-cloud-consul-discovery-1.1.0.RELEASE-javadoc.jar
deleted file mode 100644
index d7d658bd..00000000
Binary files a/spring-cloud-consul-discovery/target/spring-cloud-consul-discovery-1.1.0.RELEASE-javadoc.jar and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/spring-cloud-consul-discovery-1.1.0.RELEASE-sources.jar b/spring-cloud-consul-discovery/target/spring-cloud-consul-discovery-1.1.0.RELEASE-sources.jar
deleted file mode 100644
index a0eddbba..00000000
Binary files a/spring-cloud-consul-discovery/target/spring-cloud-consul-discovery-1.1.0.RELEASE-sources.jar and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/spring-cloud-consul-discovery-1.1.0.RELEASE.jar b/spring-cloud-consul-discovery/target/spring-cloud-consul-discovery-1.1.0.RELEASE.jar
deleted file mode 100644
index 31f6d911..00000000
Binary files a/spring-cloud-consul-discovery/target/spring-cloud-consul-discovery-1.1.0.RELEASE.jar and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/spring-cloud-consul-discovery-1.1.1.BUILD-SNAPSHOT-javadoc.jar b/spring-cloud-consul-discovery/target/spring-cloud-consul-discovery-1.1.1.BUILD-SNAPSHOT-javadoc.jar
deleted file mode 100644
index 8dfea7b8..00000000
Binary files a/spring-cloud-consul-discovery/target/spring-cloud-consul-discovery-1.1.1.BUILD-SNAPSHOT-javadoc.jar and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/spring-cloud-consul-discovery-1.1.1.BUILD-SNAPSHOT-sources.jar b/spring-cloud-consul-discovery/target/spring-cloud-consul-discovery-1.1.1.BUILD-SNAPSHOT-sources.jar
deleted file mode 100644
index 2e733854..00000000
Binary files a/spring-cloud-consul-discovery/target/spring-cloud-consul-discovery-1.1.1.BUILD-SNAPSHOT-sources.jar and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/spring-cloud-consul-discovery-1.1.1.BUILD-SNAPSHOT.jar b/spring-cloud-consul-discovery/target/spring-cloud-consul-discovery-1.1.1.BUILD-SNAPSHOT.jar
deleted file mode 100644
index 064401ac..00000000
Binary files a/spring-cloud-consul-discovery/target/spring-cloud-consul-discovery-1.1.1.BUILD-SNAPSHOT.jar and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientAclTests$MyTestConfig.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientAclTests$MyTestConfig.class
deleted file mode 100644
index 1d87525d..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientAclTests$MyTestConfig.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientAclTests.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientAclTests.class
deleted file mode 100644
index 7c647a57..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientAclTests.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientCustomizedTests$MyTestConfig.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientCustomizedTests$MyTestConfig.class
deleted file mode 100644
index ed892d02..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientCustomizedTests$MyTestConfig.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientCustomizedTests.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientCustomizedTests.class
deleted file mode 100644
index 2cfa7f15..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientCustomizedTests.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientLocalServiceInstanceTests$LocalServiceTestConfig.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientLocalServiceInstanceTests$LocalServiceTestConfig.class
deleted file mode 100644
index baacd80f..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientLocalServiceInstanceTests$LocalServiceTestConfig.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientLocalServiceInstanceTests.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientLocalServiceInstanceTests.class
deleted file mode 100644
index 65f6ebac..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientLocalServiceInstanceTests.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientTests$MyTestConfig.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientTests$MyTestConfig.class
deleted file mode 100644
index 0c127937..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientTests$MyTestConfig.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientTests.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientTests.class
deleted file mode 100644
index dc18e792..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryClientTests.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryPropertiesTests.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryPropertiesTests.class
deleted file mode 100644
index 01dd73f2..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulDiscoveryPropertiesTests.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedAgentAddressTests.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedAgentAddressTests.class
deleted file mode 100644
index 14ea1a9d..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedAgentAddressTests.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedManagementServicePortTests$TestConfig.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedManagementServicePortTests$TestConfig.class
deleted file mode 100644
index cac32621..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedManagementServicePortTests$TestConfig.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedManagementServicePortTests.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedManagementServicePortTests.class
deleted file mode 100644
index b78312af..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedManagementServicePortTests.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedPropsTests.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedPropsTests.class
deleted file mode 100644
index b0fc9507..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedPropsTests.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedServiceNameTests.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedServiceNameTests.class
deleted file mode 100644
index 31719cd8..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedServiceNameTests.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedTests$CustomConsulLifecycle.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedTests$CustomConsulLifecycle.class
deleted file mode 100644
index a39a5e1b..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedTests$CustomConsulLifecycle.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedTests$MyTestConfig.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedTests$MyTestConfig.class
deleted file mode 100644
index fe4c9d1f..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedTests$MyTestConfig.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedTests.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedTests.class
deleted file mode 100644
index 87dea2cd..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleCustomizedTests.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleDefaultPortTests.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleDefaultPortTests.class
deleted file mode 100644
index c3e1abec..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleDefaultPortTests.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleManagementServiceTests$TestConfig.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleManagementServiceTests$TestConfig.class
deleted file mode 100644
index bd2b3e23..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleManagementServiceTests$TestConfig.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleManagementServiceTests.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleManagementServiceTests.class
deleted file mode 100644
index eed874a6..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleManagementServiceTests.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleRegistrationDisabledTests.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleRegistrationDisabledTests.class
deleted file mode 100644
index 8001a048..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleRegistrationDisabledTests.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleTests.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleTests.class
deleted file mode 100644
index 1d8ddd89..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulLifecycleTests.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulServerListTests.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulServerListTests.class
deleted file mode 100644
index 45d28934..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/ConsulServerListTests.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/HealthServiceServerListFilterTests.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/HealthServiceServerListFilterTests.class
deleted file mode 100644
index e442c5f0..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/HealthServiceServerListFilterTests.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/HeartbeatPropertiesTests.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/HeartbeatPropertiesTests.class
deleted file mode 100644
index f79e9ae7..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/HeartbeatPropertiesTests.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/TestConfig.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/TestConfig.class
deleted file mode 100644
index 25d6ecdf..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/TestConfig.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/TestPropsConfig.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/TestPropsConfig.class
deleted file mode 100644
index 89bad5a2..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/TestPropsConfig.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/TtlSchedulerRemoveTest.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/TtlSchedulerRemoveTest.class
deleted file mode 100644
index 397693ed..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/TtlSchedulerRemoveTest.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/TtlSchedulerRemoveTestConfig.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/TtlSchedulerRemoveTestConfig.class
deleted file mode 100644
index c0050676..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/TtlSchedulerRemoveTestConfig.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/TtlSchedulerTest.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/TtlSchedulerTest.class
deleted file mode 100644
index 5aaaa52a..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/TtlSchedulerTest.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/TtlSchedulerTestConfig.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/TtlSchedulerTestConfig.class
deleted file mode 100644
index 3236aa35..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/TtlSchedulerTestConfig.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/configclient/ConsulConfigServerAutoConfigurationTests.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/configclient/ConsulConfigServerAutoConfigurationTests.class
deleted file mode 100644
index 5e48f3e7..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/configclient/ConsulConfigServerAutoConfigurationTests.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/configclient/DiscoveryClientConfigServiceAutoConfigurationTests$EnvironmentKnobbler.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/configclient/DiscoveryClientConfigServiceAutoConfigurationTests$EnvironmentKnobbler.class
deleted file mode 100644
index ab6f3ee6..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/configclient/DiscoveryClientConfigServiceAutoConfigurationTests$EnvironmentKnobbler.class and /dev/null differ
diff --git a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/configclient/DiscoveryClientConfigServiceAutoConfigurationTests.class b/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/configclient/DiscoveryClientConfigServiceAutoConfigurationTests.class
deleted file mode 100644
index 8b407194..00000000
Binary files a/spring-cloud-consul-discovery/target/test-classes/org/springframework/cloud/consul/discovery/configclient/DiscoveryClientConfigServiceAutoConfigurationTests.class and /dev/null differ
diff --git a/spring-cloud-consul-sample/target/apidocs/allclasses-frame.html b/spring-cloud-consul-sample/target/apidocs/allclasses-frame.html
deleted file mode 100644
index 3fe6faa7..00000000
--- a/spring-cloud-consul-sample/target/apidocs/allclasses-frame.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-All Classes (Spring Cloud Consul Sample 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-All Classes
-
-
-
diff --git a/spring-cloud-consul-sample/target/apidocs/allclasses-noframe.html b/spring-cloud-consul-sample/target/apidocs/allclasses-noframe.html
deleted file mode 100644
index 8b73dbf7..00000000
--- a/spring-cloud-consul-sample/target/apidocs/allclasses-noframe.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-All Classes (Spring Cloud Consul Sample 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-All Classes
-
-
-
diff --git a/spring-cloud-consul-sample/target/apidocs/constant-values.html b/spring-cloud-consul-sample/target/apidocs/constant-values.html
deleted file mode 100644
index df893b01..00000000
--- a/spring-cloud-consul-sample/target/apidocs/constant-values.html
+++ /dev/null
@@ -1,124 +0,0 @@
-
-
-
-
-
-
-Constant Field Values (Spring Cloud Consul Sample 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-sample/target/apidocs/deprecated-list.html b/spring-cloud-consul-sample/target/apidocs/deprecated-list.html
deleted file mode 100644
index b314f0c9..00000000
--- a/spring-cloud-consul-sample/target/apidocs/deprecated-list.html
+++ /dev/null
@@ -1,124 +0,0 @@
-
-
-
-
-
-
-Deprecated List (Spring Cloud Consul Sample 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-sample/target/apidocs/help-doc.html b/spring-cloud-consul-sample/target/apidocs/help-doc.html
deleted file mode 100644
index 60a3669e..00000000
--- a/spring-cloud-consul-sample/target/apidocs/help-doc.html
+++ /dev/null
@@ -1,225 +0,0 @@
-
-
-
-
-
-
-API Help (Spring Cloud Consul Sample 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-Package
-Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:
-
-Interfaces (italic)
-Classes
-Enums
-Exceptions
-Errors
-Annotation Types
-
-
-
-Class/Interface
-Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:
-
-Class inheritance diagram
-Direct Subclasses
-All Known Subinterfaces
-All Known Implementing Classes
-Class/interface declaration
-Class/interface description
-
-
-Nested Class Summary
-Field Summary
-Constructor Summary
-Method Summary
-
-
-Field Detail
-Constructor Detail
-Method Detail
-
-Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.
-
-
-Annotation Type
-Each annotation type has its own separate page with the following sections:
-
-Annotation Type declaration
-Annotation Type description
-Required Element Summary
-Optional Element Summary
-Element Detail
-
-
-
-Enum
-Each enum has its own separate page with the following sections:
-
-Enum declaration
-Enum description
-Enum Constant Summary
-Enum Constant Detail
-
-
-
-Use
-Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.
-
-
-Tree (Class Hierarchy)
-There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.
-
-When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
-When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
-
-
-
-Deprecated API
-The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.
-
-
-Index
-The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.
-
-
-Prev/Next
-These links take you to the next or previous class, interface, package, or related page.
-
-
-Frames/No Frames
-These links show and hide the HTML frames. All pages are available with or without frames.
-
-
-All Classes
-The All Classes link shows all classes and interfaces except non-static nested types.
-
-
-Serialized Form
-Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.
-
-
-Constant Field Values
-The Constant Field Values page lists the static final fields and their values.
-
-
-
This help file applies to API documentation generated using the standard doclet.
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-sample/target/apidocs/index-all.html b/spring-cloud-consul-sample/target/apidocs/index-all.html
deleted file mode 100644
index 8aa623c9..00000000
--- a/spring-cloud-consul-sample/target/apidocs/index-all.html
+++ /dev/null
@@ -1,217 +0,0 @@
-
-
-
-
-
-
-Index (Spring Cloud Consul Sample 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-C E F I L M O P R S
-
-
-
C
-
-choose() - Method in class org.springframework.cloud.consul.sample.SampleConsulApplication
-
-choose() - Method in interface org.springframework.cloud.consul.sample.SampleConsulApplication.SampleClient
-
-
-
-
-
-
E
-
-env(String) - Method in class org.springframework.cloud.consul.sample.SampleConsulApplication
-
-
-
-
-
-
F
-
-feign() - Method in class org.springframework.cloud.consul.sample.SampleConsulApplication
-
-
-
-
-
-
I
-
-instances() - Method in class org.springframework.cloud.consul.sample.SampleConsulApplication
-
-
-
-
-
-
L
-
-lb() - Method in class org.springframework.cloud.consul.sample.SampleConsulApplication
-
-
-
-
-
-
M
-
-main(String[]) - Static method in class org.springframework.cloud.consul.sample.SampleConsulApplication
-
-me() - Method in class org.springframework.cloud.consul.sample.SampleConsulApplication
-
-
-
-
-
-
O
-
-org.springframework.cloud.consul.sample - package org.springframework.cloud.consul.sample
-
-
-
-
-
-
P
-
-prop() - Method in class org.springframework.cloud.consul.sample.SampleConsulApplication
-
-
-
-
-
-
R
-
-rest() - Method in class org.springframework.cloud.consul.sample.SampleConsulApplication
-
-restTemplate() - Method in class org.springframework.cloud.consul.sample.SampleConsulApplication
-
-
-
-
-
-
S
-
-SampleConsulApplication - Class in org.springframework.cloud.consul.sample
-
-SampleConsulApplication() - Constructor for class org.springframework.cloud.consul.sample.SampleConsulApplication
-
-SampleConsulApplication.SampleClient - Interface in org.springframework.cloud.consul.sample
-
-sampleProperties() - Method in class org.springframework.cloud.consul.sample.SampleConsulApplication
-
-SampleProperties - Class in org.springframework.cloud.consul.sample
-
-SampleProperties() - Constructor for class org.springframework.cloud.consul.sample.SampleProperties
-
-
-
C E F I L M O P R S
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-sample/target/apidocs/index.html b/spring-cloud-consul-sample/target/apidocs/index.html
deleted file mode 100644
index 4da7fe44..00000000
--- a/spring-cloud-consul-sample/target/apidocs/index.html
+++ /dev/null
@@ -1,72 +0,0 @@
-
-
-
-
-
-
-Spring Cloud Consul Sample 1.1.0.BUILD-SNAPSHOT API
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-Frame Alert
-This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to Non-frame version .
-
-
-
diff --git a/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/SampleConsulApplication.SampleClient.html b/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/SampleConsulApplication.SampleClient.html
deleted file mode 100644
index af3e0a32..00000000
--- a/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/SampleConsulApplication.SampleClient.html
+++ /dev/null
@@ -1,228 +0,0 @@
-
-
-
-
-
-
-SampleConsulApplication.SampleClient (Spring Cloud Consul Sample 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/SampleConsulApplication.html b/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/SampleConsulApplication.html
deleted file mode 100644
index de36d70a..00000000
--- a/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/SampleConsulApplication.html
+++ /dev/null
@@ -1,442 +0,0 @@
-
-
-
-
-
-
-SampleConsulApplication (Spring Cloud Consul Sample 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.sample.SampleConsulApplication
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/SampleProperties.html b/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/SampleProperties.html
deleted file mode 100644
index f29cdff3..00000000
--- a/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/SampleProperties.html
+++ /dev/null
@@ -1,242 +0,0 @@
-
-
-
-
-
-
-SampleProperties (Spring Cloud Consul Sample 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-org.springframework.cloud.consul.sample.SampleProperties
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Object
-clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/class-use/SampleConsulApplication.SampleClient.html b/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/class-use/SampleConsulApplication.SampleClient.html
deleted file mode 100644
index acb62bb0..00000000
--- a/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/class-use/SampleConsulApplication.SampleClient.html
+++ /dev/null
@@ -1,124 +0,0 @@
-
-
-
-
-
-
-Uses of Interface org.springframework.cloud.consul.sample.SampleConsulApplication.SampleClient (Spring Cloud Consul Sample 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of org.springframework.cloud.consul.sample.SampleConsulApplication.SampleClient
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/class-use/SampleConsulApplication.html b/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/class-use/SampleConsulApplication.html
deleted file mode 100644
index 77745478..00000000
--- a/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/class-use/SampleConsulApplication.html
+++ /dev/null
@@ -1,124 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.sample.SampleConsulApplication (Spring Cloud Consul Sample 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of org.springframework.cloud.consul.sample.SampleConsulApplication
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/class-use/SampleProperties.html b/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/class-use/SampleProperties.html
deleted file mode 100644
index 0e424f25..00000000
--- a/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/class-use/SampleProperties.html
+++ /dev/null
@@ -1,149 +0,0 @@
-
-
-
-
-
-
-Uses of Class org.springframework.cloud.consul.sample.SampleProperties (Spring Cloud Consul Sample 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/package-frame.html b/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/package-frame.html
deleted file mode 100644
index 8dd4ca00..00000000
--- a/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/package-frame.html
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-
-
-org.springframework.cloud.consul.sample (Spring Cloud Consul Sample 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-
Interfaces
-
-
Classes
-
-
-
-
diff --git a/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/package-summary.html b/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/package-summary.html
deleted file mode 100644
index 5c85e3d6..00000000
--- a/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/package-summary.html
+++ /dev/null
@@ -1,161 +0,0 @@
-
-
-
-
-
-
-org.springframework.cloud.consul.sample (Spring Cloud Consul Sample 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-Prev Package
-Next Package
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Prev Package
-Next Package
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/package-tree.html b/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/package-tree.html
deleted file mode 100644
index 2af6bac9..00000000
--- a/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/package-tree.html
+++ /dev/null
@@ -1,138 +0,0 @@
-
-
-
-
-
-
-org.springframework.cloud.consul.sample Class Hierarchy (Spring Cloud Consul Sample 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
Class Hierarchy
-
-
Interface Hierarchy
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/package-use.html b/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/package-use.html
deleted file mode 100644
index 109a4d64..00000000
--- a/spring-cloud-consul-sample/target/apidocs/org/springframework/cloud/consul/sample/package-use.html
+++ /dev/null
@@ -1,142 +0,0 @@
-
-
-
-
-
-
-Uses of Package org.springframework.cloud.consul.sample (Spring Cloud Consul Sample 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-sample/target/apidocs/overview-tree.html b/spring-cloud-consul-sample/target/apidocs/overview-tree.html
deleted file mode 100644
index 15df2df9..00000000
--- a/spring-cloud-consul-sample/target/apidocs/overview-tree.html
+++ /dev/null
@@ -1,142 +0,0 @@
-
-
-
-
-
-
-Class Hierarchy (Spring Cloud Consul Sample 1.1.0.BUILD-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
Class Hierarchy
-
-
Interface Hierarchy
-
-
-
-
-
-
-Copyright © 2016 Pivotal Software, Inc. . All rights reserved.
-
-
diff --git a/spring-cloud-consul-sample/target/apidocs/package-list b/spring-cloud-consul-sample/target/apidocs/package-list
deleted file mode 100644
index 14a797b9..00000000
--- a/spring-cloud-consul-sample/target/apidocs/package-list
+++ /dev/null
@@ -1 +0,0 @@
-org.springframework.cloud.consul.sample
diff --git a/spring-cloud-consul-sample/target/apidocs/script.js b/spring-cloud-consul-sample/target/apidocs/script.js
deleted file mode 100644
index b3463569..00000000
--- a/spring-cloud-consul-sample/target/apidocs/script.js
+++ /dev/null
@@ -1,30 +0,0 @@
-function show(type)
-{
- count = 0;
- for (var key in methods) {
- var row = document.getElementById(key);
- if ((methods[key] & type) != 0) {
- row.style.display = '';
- row.className = (count++ % 2) ? rowColor : altColor;
- }
- else
- row.style.display = 'none';
- }
- updateTabs(type);
-}
-
-function updateTabs(type)
-{
- for (var value in tabs) {
- var sNode = document.getElementById(tabs[value][0]);
- var spanNode = sNode.firstChild;
- if (value == type) {
- sNode.className = activeTableTab;
- spanNode.innerHTML = tabs[value][1];
- }
- else {
- sNode.className = tableTab;
- spanNode.innerHTML = "" + tabs[value][1] + " ";
- }
- }
-}
diff --git a/spring-cloud-consul-sample/target/apidocs/stylesheet.css b/spring-cloud-consul-sample/target/apidocs/stylesheet.css
deleted file mode 100644
index 98055b22..00000000
--- a/spring-cloud-consul-sample/target/apidocs/stylesheet.css
+++ /dev/null
@@ -1,574 +0,0 @@
-/* Javadoc style sheet */
-/*
-Overall document style
-*/
-
-@import url('resources/fonts/dejavu.css');
-
-body {
- background-color:#ffffff;
- color:#353833;
- font-family:'DejaVu Sans', Arial, Helvetica, sans-serif;
- font-size:14px;
- margin:0;
-}
-a:link, a:visited {
- text-decoration:none;
- color:#4A6782;
-}
-a:hover, a:focus {
- text-decoration:none;
- color:#bb7a2a;
-}
-a:active {
- text-decoration:none;
- color:#4A6782;
-}
-a[name] {
- color:#353833;
-}
-a[name]:hover {
- text-decoration:none;
- color:#353833;
-}
-pre {
- font-family:'DejaVu Sans Mono', monospace;
- font-size:14px;
-}
-h1 {
- font-size:20px;
-}
-h2 {
- font-size:18px;
-}
-h3 {
- font-size:16px;
- font-style:italic;
-}
-h4 {
- font-size:13px;
-}
-h5 {
- font-size:12px;
-}
-h6 {
- font-size:11px;
-}
-ul {
- list-style-type:disc;
-}
-code, tt {
- font-family:'DejaVu Sans Mono', monospace;
- font-size:14px;
- padding-top:4px;
- margin-top:8px;
- line-height:1.4em;
-}
-dt code {
- font-family:'DejaVu Sans Mono', monospace;
- font-size:14px;
- padding-top:4px;
-}
-table tr td dt code {
- font-family:'DejaVu Sans Mono', monospace;
- font-size:14px;
- vertical-align:top;
- padding-top:4px;
-}
-sup {
- font-size:8px;
-}
-/*
-Document title and Copyright styles
-*/
-.clear {
- clear:both;
- height:0px;
- overflow:hidden;
-}
-.aboutLanguage {
- float:right;
- padding:0px 21px;
- font-size:11px;
- z-index:200;
- margin-top:-9px;
-}
-.legalCopy {
- margin-left:.5em;
-}
-.bar a, .bar a:link, .bar a:visited, .bar a:active {
- color:#FFFFFF;
- text-decoration:none;
-}
-.bar a:hover, .bar a:focus {
- color:#bb7a2a;
-}
-.tab {
- background-color:#0066FF;
- color:#ffffff;
- padding:8px;
- width:5em;
- font-weight:bold;
-}
-/*
-Navigation bar styles
-*/
-.bar {
- background-color:#4D7A97;
- color:#FFFFFF;
- padding:.8em .5em .4em .8em;
- height:auto;/*height:1.8em;*/
- font-size:11px;
- margin:0;
-}
-.topNav {
- background-color:#4D7A97;
- color:#FFFFFF;
- float:left;
- padding:0;
- width:100%;
- clear:right;
- height:2.8em;
- padding-top:10px;
- overflow:hidden;
- font-size:12px;
-}
-.bottomNav {
- margin-top:10px;
- background-color:#4D7A97;
- color:#FFFFFF;
- float:left;
- padding:0;
- width:100%;
- clear:right;
- height:2.8em;
- padding-top:10px;
- overflow:hidden;
- font-size:12px;
-}
-.subNav {
- background-color:#dee3e9;
- float:left;
- width:100%;
- overflow:hidden;
- font-size:12px;
-}
-.subNav div {
- clear:left;
- float:left;
- padding:0 0 5px 6px;
- text-transform:uppercase;
-}
-ul.navList, ul.subNavList {
- float:left;
- margin:0 25px 0 0;
- padding:0;
-}
-ul.navList li{
- list-style:none;
- float:left;
- padding: 5px 6px;
- text-transform:uppercase;
-}
-ul.subNavList li{
- list-style:none;
- float:left;
-}
-.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited {
- color:#FFFFFF;
- text-decoration:none;
- text-transform:uppercase;
-}
-.topNav a:hover, .bottomNav a:hover {
- text-decoration:none;
- color:#bb7a2a;
- text-transform:uppercase;
-}
-.navBarCell1Rev {
- background-color:#F8981D;
- color:#253441;
- margin: auto 5px;
-}
-.skipNav {
- position:absolute;
- top:auto;
- left:-9999px;
- overflow:hidden;
-}
-/*
-Page header and footer styles
-*/
-.header, .footer {
- clear:both;
- margin:0 20px;
- padding:5px 0 0 0;
-}
-.indexHeader {
- margin:10px;
- position:relative;
-}
-.indexHeader span{
- margin-right:15px;
-}
-.indexHeader h1 {
- font-size:13px;
-}
-.title {
- color:#2c4557;
- margin:10px 0;
-}
-.subTitle {
- margin:5px 0 0 0;
-}
-.header ul {
- margin:0 0 15px 0;
- padding:0;
-}
-.footer ul {
- margin:20px 0 5px 0;
-}
-.header ul li, .footer ul li {
- list-style:none;
- font-size:13px;
-}
-/*
-Heading styles
-*/
-div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 {
- background-color:#dee3e9;
- border:1px solid #d0d9e0;
- margin:0 0 6px -8px;
- padding:7px 5px;
-}
-ul.blockList ul.blockList ul.blockList li.blockList h3 {
- background-color:#dee3e9;
- border:1px solid #d0d9e0;
- margin:0 0 6px -8px;
- padding:7px 5px;
-}
-ul.blockList ul.blockList li.blockList h3 {
- padding:0;
- margin:15px 0;
-}
-ul.blockList li.blockList h2 {
- padding:0px 0 20px 0;
-}
-/*
-Page layout container styles
-*/
-.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer {
- clear:both;
- padding:10px 20px;
- position:relative;
-}
-.indexContainer {
- margin:10px;
- position:relative;
- font-size:12px;
-}
-.indexContainer h2 {
- font-size:13px;
- padding:0 0 3px 0;
-}
-.indexContainer ul {
- margin:0;
- padding:0;
-}
-.indexContainer ul li {
- list-style:none;
- padding-top:2px;
-}
-.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt {
- font-size:12px;
- font-weight:bold;
- margin:10px 0 0 0;
- color:#4E4E4E;
-}
-.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd {
- margin:5px 0 10px 0px;
- font-size:14px;
- font-family:'DejaVu Sans Mono',monospace;
-}
-.serializedFormContainer dl.nameValue dt {
- margin-left:1px;
- font-size:1.1em;
- display:inline;
- font-weight:bold;
-}
-.serializedFormContainer dl.nameValue dd {
- margin:0 0 0 1px;
- font-size:1.1em;
- display:inline;
-}
-/*
-List styles
-*/
-ul.horizontal li {
- display:inline;
- font-size:0.9em;
-}
-ul.inheritance {
- margin:0;
- padding:0;
-}
-ul.inheritance li {
- display:inline;
- list-style:none;
-}
-ul.inheritance li ul.inheritance {
- margin-left:15px;
- padding-left:15px;
- padding-top:1px;
-}
-ul.blockList, ul.blockListLast {
- margin:10px 0 10px 0;
- padding:0;
-}
-ul.blockList li.blockList, ul.blockListLast li.blockList {
- list-style:none;
- margin-bottom:15px;
- line-height:1.4;
-}
-ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList {
- padding:0px 20px 5px 10px;
- border:1px solid #ededed;
- background-color:#f8f8f8;
-}
-ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList {
- padding:0 0 5px 8px;
- background-color:#ffffff;
- border:none;
-}
-ul.blockList ul.blockList ul.blockList ul.blockList li.blockList {
- margin-left:0;
- padding-left:0;
- padding-bottom:15px;
- border:none;
-}
-ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast {
- list-style:none;
- border-bottom:none;
- padding-bottom:0;
-}
-table tr td dl, table tr td dl dt, table tr td dl dd {
- margin-top:0;
- margin-bottom:1px;
-}
-/*
-Table styles
-*/
-.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary {
- width:100%;
- border-left:1px solid #EEE;
- border-right:1px solid #EEE;
- border-bottom:1px solid #EEE;
-}
-.overviewSummary, .memberSummary {
- padding:0px;
-}
-.overviewSummary caption, .memberSummary caption, .typeSummary caption,
-.useSummary caption, .constantsSummary caption, .deprecatedSummary caption {
- position:relative;
- text-align:left;
- background-repeat:no-repeat;
- color:#253441;
- font-weight:bold;
- clear:none;
- overflow:hidden;
- padding:0px;
- padding-top:10px;
- padding-left:1px;
- margin:0px;
- white-space:pre;
-}
-.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link,
-.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link,
-.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover,
-.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover,
-.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active,
-.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active,
-.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited,
-.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited {
- color:#FFFFFF;
-}
-.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span,
-.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span {
- white-space:nowrap;
- padding-top:5px;
- padding-left:12px;
- padding-right:12px;
- padding-bottom:7px;
- display:inline-block;
- float:left;
- background-color:#F8981D;
- border: none;
- height:16px;
-}
-.memberSummary caption span.activeTableTab span {
- white-space:nowrap;
- padding-top:5px;
- padding-left:12px;
- padding-right:12px;
- margin-right:3px;
- display:inline-block;
- float:left;
- background-color:#F8981D;
- height:16px;
-}
-.memberSummary caption span.tableTab span {
- white-space:nowrap;
- padding-top:5px;
- padding-left:12px;
- padding-right:12px;
- margin-right:3px;
- display:inline-block;
- float:left;
- background-color:#4D7A97;
- height:16px;
-}
-.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab {
- padding-top:0px;
- padding-left:0px;
- padding-right:0px;
- background-image:none;
- float:none;
- display:inline;
-}
-.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd,
-.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd {
- display:none;
- width:5px;
- position:relative;
- float:left;
- background-color:#F8981D;
-}
-.memberSummary .activeTableTab .tabEnd {
- display:none;
- width:5px;
- margin-right:3px;
- position:relative;
- float:left;
- background-color:#F8981D;
-}
-.memberSummary .tableTab .tabEnd {
- display:none;
- width:5px;
- margin-right:3px;
- position:relative;
- background-color:#4D7A97;
- float:left;
-
-}
-.overviewSummary td, .memberSummary td, .typeSummary td,
-.useSummary td, .constantsSummary td, .deprecatedSummary td {
- text-align:left;
- padding:0px 0px 12px 10px;
-}
-th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th,
-td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{
- vertical-align:top;
- padding-right:0px;
- padding-top:8px;
- padding-bottom:3px;
-}
-th.colFirst, th.colLast, th.colOne, .constantsSummary th {
- background:#dee3e9;
- text-align:left;
- padding:8px 3px 3px 7px;
-}
-td.colFirst, th.colFirst {
- white-space:nowrap;
- font-size:13px;
-}
-td.colLast, th.colLast {
- font-size:13px;
-}
-td.colOne, th.colOne {
- font-size:13px;
-}
-.overviewSummary td.colFirst, .overviewSummary th.colFirst,
-.useSummary td.colFirst, .useSummary th.colFirst,
-.overviewSummary td.colOne, .overviewSummary th.colOne,
-.memberSummary td.colFirst, .memberSummary th.colFirst,
-.memberSummary td.colOne, .memberSummary th.colOne,
-.typeSummary td.colFirst{
- width:25%;
- vertical-align:top;
-}
-td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover {
- font-weight:bold;
-}
-.tableSubHeadingColor {
- background-color:#EEEEFF;
-}
-.altColor {
- background-color:#FFFFFF;
-}
-.rowColor {
- background-color:#EEEEEF;
-}
-/*
-Content styles
-*/
-.description pre {
- margin-top:0;
-}
-.deprecatedContent {
- margin:0;
- padding:10px 0;
-}
-.docSummary {
- padding:0;
-}
-
-ul.blockList ul.blockList ul.blockList li.blockList h3 {
- font-style:normal;
-}
-
-div.block {
- font-size:14px;
- font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
-}
-
-td.colLast div {
- padding-top:0px;
-}
-
-
-td.colLast a {
- padding-bottom:3px;
-}
-/*
-Formatting effect styles
-*/
-.sourceLineNo {
- color:green;
- padding:0 30px 0 0;
-}
-h1.hidden {
- visibility:hidden;
- overflow:hidden;
- font-size:10px;
-}
-.block {
- display:block;
- margin:3px 10px 2px 0px;
- color:#474747;
-}
-.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink,
-.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel,
-.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink {
- font-weight:bold;
-}
-.deprecationComment, .emphasizedPhrase, .interfaceName {
- font-style:italic;
-}
-
-div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase,
-div.block div.block span.interfaceName {
- font-style:normal;
-}
-
-div.contentContainer ul.blockList li.blockList h2{
- padding-bottom:0px;
-}
diff --git a/spring-cloud-consul-sample/target/classes/META-INF/spring-configuration-metadata.json b/spring-cloud-consul-sample/target/classes/META-INF/spring-configuration-metadata.json
deleted file mode 100644
index 0c763c61..00000000
--- a/spring-cloud-consul-sample/target/classes/META-INF/spring-configuration-metadata.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "groups": [{
- "name": "sample",
- "type": "org.springframework.cloud.consul.sample.SampleProperties",
- "sourceType": "org.springframework.cloud.consul.sample.SampleProperties"
- }],
- "properties": [{
- "name": "sample.prop",
- "type": "java.lang.String",
- "sourceType": "org.springframework.cloud.consul.sample.SampleProperties",
- "defaultValue": "default value"
- }],
- "hints": []
-}
\ No newline at end of file
diff --git a/spring-cloud-consul-sample/target/classes/application.yml b/spring-cloud-consul-sample/target/classes/application.yml
deleted file mode 100644
index 366a8af7..00000000
--- a/spring-cloud-consul-sample/target/classes/application.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-server:
- port: 8080
-
-ribbon:
- ServerListRefreshInterval: 1000
-
-endpoints:
- health:
- sensitive: false
- restart:
- enabled: true
- shutdown:
- enabled: true
-
-logging:
- level:
- org.springframework.cloud.consul: DEBUG
\ No newline at end of file
diff --git a/spring-cloud-consul-sample/target/classes/bootstrap.yml b/spring-cloud-consul-sample/target/classes/bootstrap.yml
deleted file mode 100644
index b6e88eb5..00000000
--- a/spring-cloud-consul-sample/target/classes/bootstrap.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-spring:
- application:
- name: testConsulApp
diff --git a/spring-cloud-consul-sample/target/classes/org/springframework/cloud/consul/sample/SampleConsulApplication$SampleClient.class b/spring-cloud-consul-sample/target/classes/org/springframework/cloud/consul/sample/SampleConsulApplication$SampleClient.class
deleted file mode 100644
index c227871d..00000000
Binary files a/spring-cloud-consul-sample/target/classes/org/springframework/cloud/consul/sample/SampleConsulApplication$SampleClient.class and /dev/null differ
diff --git a/spring-cloud-consul-sample/target/classes/org/springframework/cloud/consul/sample/SampleConsulApplication.class b/spring-cloud-consul-sample/target/classes/org/springframework/cloud/consul/sample/SampleConsulApplication.class
deleted file mode 100644
index c15e1448..00000000
Binary files a/spring-cloud-consul-sample/target/classes/org/springframework/cloud/consul/sample/SampleConsulApplication.class and /dev/null differ
diff --git a/spring-cloud-consul-sample/target/classes/org/springframework/cloud/consul/sample/SampleProperties.class b/spring-cloud-consul-sample/target/classes/org/springframework/cloud/consul/sample/SampleProperties.class
deleted file mode 100644
index 809b90da..00000000
Binary files a/spring-cloud-consul-sample/target/classes/org/springframework/cloud/consul/sample/SampleProperties.class and /dev/null differ
diff --git a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1030682425.txt b/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1030682425.txt
deleted file mode 100644
index 687e6cb2..00000000
--- a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1030682425.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-Invoking Maven for the goals: [org.apache.maven.plugins:maven-javadoc-plugin:2.10.4:javadoc] with no properties
-
-M2_HOME=/home/jenkins/.m2/wrapper/dists/apache-maven-3.3.9-bin/2609u9g41na2l7ogackmif6fj2/apache-maven-3.3.9
-MAVEN_OPTS=null
-JAVA_HOME=/opt/jenkins/data/tools/hudson.model.JDK/jdk8/jdk1.8.0_91/jre/..
-JAVA_OPTS=null
-
-[INFO] Scanning for projects...
-[WARNING]
-[WARNING] Some problems were encountered while building the effective model for org.springframework.cloud:spring-cloud-starter-consul-all:jar:1.1.0.BUILD-SNAPSHOT
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 147, column 12
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 132, column 12
-[WARNING]
-[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
-[WARNING]
-[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
-[WARNING]
-[INFO]
-[INFO] ------------------------------------------------------------------------
-[INFO] Building Spring Cloud Starter Consul All 1.1.0.BUILD-SNAPSHOT
-[INFO] ------------------------------------------------------------------------
-[INFO]
-[INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > generate-sources @ spring-cloud-starter-consul-all >>>
-[INFO]
-[INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < generate-sources @ spring-cloud-starter-consul-all <<<
-[INFO]
-[INFO] --- maven-javadoc-plugin:2.10.4:javadoc (default-cli) @ spring-cloud-starter-consul-all ---
-[INFO] ------------------------------------------------------------------------
-[INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 1.649 s
-[INFO] Finished at: 2016-09-22T13:40:50+00:00
-[INFO] Final Memory: 30M/355M
-[INFO] ------------------------------------------------------------------------
diff --git a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1035195830.txt b/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1035195830.txt
deleted file mode 100644
index 2be5939c..00000000
--- a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1035195830.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-Invoking Maven for the goals: [org.apache.maven.plugins:maven-javadoc-plugin:2.10.4:javadoc] with no properties
-
-M2_HOME=/home/jenkins/.m2/wrapper/dists/apache-maven-3.3.9-bin/2609u9g41na2l7ogackmif6fj2/apache-maven-3.3.9
-MAVEN_OPTS=null
-JAVA_HOME=/opt/jenkins/data/tools/hudson.model.JDK/jdk8/jdk1.8.0_91/jre/..
-JAVA_OPTS=null
-
-[INFO] Scanning for projects...
-[WARNING]
-[WARNING] Some problems were encountered while building the effective model for org.springframework.cloud:spring-cloud-starter-consul-all:jar:1.1.0.BUILD-SNAPSHOT
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 147, column 12
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 132, column 12
-[WARNING]
-[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
-[WARNING]
-[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
-[WARNING]
-[INFO]
-[INFO] ------------------------------------------------------------------------
-[INFO] Building Spring Cloud Starter Consul All 1.1.0.BUILD-SNAPSHOT
-[INFO] ------------------------------------------------------------------------
-[INFO]
-[INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > generate-sources @ spring-cloud-starter-consul-all >>>
-[INFO]
-[INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < generate-sources @ spring-cloud-starter-consul-all <<<
-[INFO]
-[INFO] --- maven-javadoc-plugin:2.10.4:javadoc (default-cli) @ spring-cloud-starter-consul-all ---
-[INFO] ------------------------------------------------------------------------
-[INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 1.624 s
-[INFO] Finished at: 2016-09-22T16:39:29+00:00
-[INFO] Final Memory: 30M/356M
-[INFO] ------------------------------------------------------------------------
diff --git a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1131499198.txt b/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1131499198.txt
deleted file mode 100644
index 19296c92..00000000
--- a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1131499198.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-Invoking Maven for the goals: [org.apache.maven.plugins:maven-javadoc-plugin:2.10.4:javadoc] with no properties
-
-M2_HOME=/home/jenkins/.m2/wrapper/dists/apache-maven-3.3.9-bin/2609u9g41na2l7ogackmif6fj2/apache-maven-3.3.9
-MAVEN_OPTS=null
-JAVA_HOME=/opt/jenkins/data/tools/hudson.model.JDK/jdk8/jdk1.8.0_91/jre/..
-JAVA_OPTS=null
-
-[INFO] Scanning for projects...
-[WARNING]
-[WARNING] Some problems were encountered while building the effective model for org.springframework.cloud:spring-cloud-starter-consul-all:jar:1.1.1.BUILD-SNAPSHOT
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 147, column 12
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 132, column 12
-[WARNING]
-[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
-[WARNING]
-[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
-[WARNING]
-[INFO]
-[INFO] ------------------------------------------------------------------------
-[INFO] Building Spring Cloud Starter Consul All 1.1.1.BUILD-SNAPSHOT
-[INFO] ------------------------------------------------------------------------
-[INFO]
-[INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > generate-sources @ spring-cloud-starter-consul-all >>>
-[INFO]
-[INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < generate-sources @ spring-cloud-starter-consul-all <<<
-[INFO]
-[INFO] --- maven-javadoc-plugin:2.10.4:javadoc (default-cli) @ spring-cloud-starter-consul-all ---
-[INFO] ------------------------------------------------------------------------
-[INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 1.674 s
-[INFO] Finished at: 2016-09-23T07:41:05+00:00
-[INFO] Final Memory: 30M/356M
-[INFO] ------------------------------------------------------------------------
diff --git a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1131615813.txt b/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1131615813.txt
deleted file mode 100644
index 5886681b..00000000
--- a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1131615813.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-Invoking Maven for the goals: [org.apache.maven.plugins:maven-javadoc-plugin:2.10.4:javadoc] with no properties
-
-M2_HOME=/home/jenkins/.m2/wrapper/dists/apache-maven-3.3.9-bin/2609u9g41na2l7ogackmif6fj2/apache-maven-3.3.9
-MAVEN_OPTS=null
-JAVA_HOME=/opt/jenkins/data/tools/hudson.model.JDK/jdk8/jdk1.8.0_91/jre/..
-JAVA_OPTS=null
-
-[INFO] Scanning for projects...
-[WARNING]
-[WARNING] Some problems were encountered while building the effective model for org.springframework.cloud:spring-cloud-starter-consul-all:jar:1.1.0.BUILD-SNAPSHOT
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 147, column 12
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 132, column 12
-[WARNING]
-[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
-[WARNING]
-[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
-[WARNING]
-[INFO]
-[INFO] ------------------------------------------------------------------------
-[INFO] Building Spring Cloud Starter Consul All 1.1.0.BUILD-SNAPSHOT
-[INFO] ------------------------------------------------------------------------
-[INFO]
-[INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > generate-sources @ spring-cloud-starter-consul-all >>>
-[INFO]
-[INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < generate-sources @ spring-cloud-starter-consul-all <<<
-[INFO]
-[INFO] --- maven-javadoc-plugin:2.10.4:javadoc (default-cli) @ spring-cloud-starter-consul-all ---
-[INFO] ------------------------------------------------------------------------
-[INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 1.578 s
-[INFO] Finished at: 2016-09-22T16:43:39+00:00
-[INFO] Final Memory: 32M/355M
-[INFO] ------------------------------------------------------------------------
diff --git a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1187026179.txt b/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1187026179.txt
deleted file mode 100644
index d61d24af..00000000
--- a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1187026179.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-Invoking Maven for the goals: [org.apache.maven.plugins:maven-javadoc-plugin:2.10.4:javadoc] with no properties
-
-M2_HOME=/home/jenkins/.m2/wrapper/dists/apache-maven-3.3.9-bin/2609u9g41na2l7ogackmif6fj2/apache-maven-3.3.9
-MAVEN_OPTS=null
-JAVA_HOME=/opt/jenkins/data/tools/hudson.model.JDK/jdk8/jdk1.8.0_91/jre/..
-JAVA_OPTS=null
-
-[INFO] Scanning for projects...
-[WARNING]
-[WARNING] Some problems were encountered while building the effective model for org.springframework.cloud:spring-cloud-starter-consul-all:jar:1.1.1.BUILD-SNAPSHOT
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 147, column 12
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 132, column 12
-[WARNING]
-[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
-[WARNING]
-[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
-[WARNING]
-[INFO]
-[INFO] ------------------------------------------------------------------------
-[INFO] Building Spring Cloud Starter Consul All 1.1.1.BUILD-SNAPSHOT
-[INFO] ------------------------------------------------------------------------
-[INFO]
-[INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > generate-sources @ spring-cloud-starter-consul-all >>>
-[INFO]
-[INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < generate-sources @ spring-cloud-starter-consul-all <<<
-[INFO]
-[INFO] --- maven-javadoc-plugin:2.10.4:javadoc (default-cli) @ spring-cloud-starter-consul-all ---
-[INFO] ------------------------------------------------------------------------
-[INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 1.568 s
-[INFO] Finished at: 2016-09-24T22:41:04+00:00
-[INFO] Final Memory: 30M/356M
-[INFO] ------------------------------------------------------------------------
diff --git a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1345478491.txt b/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1345478491.txt
deleted file mode 100644
index 8393b678..00000000
--- a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1345478491.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-Invoking Maven for the goals: [org.apache.maven.plugins:maven-javadoc-plugin:2.10.4:javadoc] with no properties
-
-M2_HOME=/home/jenkins/.m2/wrapper/dists/apache-maven-3.3.9-bin/2609u9g41na2l7ogackmif6fj2/apache-maven-3.3.9
-MAVEN_OPTS=null
-JAVA_HOME=/opt/jenkins/data/tools/hudson.model.JDK/jdk8/jdk1.8.0_91/jre/..
-JAVA_OPTS=null
-
-[INFO] Scanning for projects...
-[WARNING]
-[WARNING] Some problems were encountered while building the effective model for org.springframework.cloud:spring-cloud-starter-consul-all:jar:1.1.0.BUILD-SNAPSHOT
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 147, column 12
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 132, column 12
-[WARNING]
-[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
-[WARNING]
-[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
-[WARNING]
-[INFO]
-[INFO] ------------------------------------------------------------------------
-[INFO] Building Spring Cloud Starter Consul All 1.1.0.BUILD-SNAPSHOT
-[INFO] ------------------------------------------------------------------------
-[INFO]
-[INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > generate-sources @ spring-cloud-starter-consul-all >>>
-[INFO]
-[INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < generate-sources @ spring-cloud-starter-consul-all <<<
-[INFO]
-[INFO] --- maven-javadoc-plugin:2.10.4:javadoc (default-cli) @ spring-cloud-starter-consul-all ---
-[INFO] ------------------------------------------------------------------------
-[INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 1.730 s
-[INFO] Finished at: 2016-09-22T16:11:22+00:00
-[INFO] Final Memory: 30M/356M
-[INFO] ------------------------------------------------------------------------
diff --git a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1439050362.txt b/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1439050362.txt
deleted file mode 100644
index b3351b40..00000000
--- a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1439050362.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-Invoking Maven for the goals: [org.apache.maven.plugins:maven-javadoc-plugin:2.10.4:javadoc] with no properties
-
-M2_HOME=/home/jenkins/.m2/wrapper/dists/apache-maven-3.3.9-bin/2609u9g41na2l7ogackmif6fj2/apache-maven-3.3.9
-MAVEN_OPTS=null
-JAVA_HOME=/opt/jenkins/data/tools/hudson.model.JDK/jdk8/jdk1.8.0_91/jre/..
-JAVA_OPTS=null
-
-[INFO] Scanning for projects...
-[WARNING]
-[WARNING] Some problems were encountered while building the effective model for org.springframework.cloud:spring-cloud-starter-consul-all:jar:1.1.1.BUILD-SNAPSHOT
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 147, column 12
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 132, column 12
-[WARNING]
-[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
-[WARNING]
-[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
-[WARNING]
-[INFO]
-[INFO] ------------------------------------------------------------------------
-[INFO] Building Spring Cloud Starter Consul All 1.1.1.BUILD-SNAPSHOT
-[INFO] ------------------------------------------------------------------------
-[INFO]
-[INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > generate-sources @ spring-cloud-starter-consul-all >>>
-[INFO]
-[INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < generate-sources @ spring-cloud-starter-consul-all <<<
-[INFO]
-[INFO] --- maven-javadoc-plugin:2.10.4:javadoc (default-cli) @ spring-cloud-starter-consul-all ---
-[INFO] ------------------------------------------------------------------------
-[INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 1.588 s
-[INFO] Finished at: 2016-09-23T16:41:03+00:00
-[INFO] Final Memory: 28M/356M
-[INFO] ------------------------------------------------------------------------
diff --git a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1530609564.txt b/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1530609564.txt
deleted file mode 100644
index 8a110286..00000000
--- a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1530609564.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-Invoking Maven for the goals: [org.apache.maven.plugins:maven-javadoc-plugin:2.10.4:javadoc] with no properties
-
-M2_HOME=/home/jenkins/.m2/wrapper/dists/apache-maven-3.3.9-bin/2609u9g41na2l7ogackmif6fj2/apache-maven-3.3.9
-MAVEN_OPTS=null
-JAVA_HOME=/opt/jenkins/data/tools/hudson.model.JDK/jdk8/jdk1.8.0_91/jre/..
-JAVA_OPTS=null
-
-[INFO] Scanning for projects...
-[WARNING]
-[WARNING] Some problems were encountered while building the effective model for org.springframework.cloud:spring-cloud-starter-consul-all:jar:1.1.1.BUILD-SNAPSHOT
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 147, column 12
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 132, column 12
-[WARNING]
-[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
-[WARNING]
-[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
-[WARNING]
-[INFO]
-[INFO] ------------------------------------------------------------------------
-[INFO] Building Spring Cloud Starter Consul All 1.1.1.BUILD-SNAPSHOT
-[INFO] ------------------------------------------------------------------------
-[INFO]
-[INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > generate-sources @ spring-cloud-starter-consul-all >>>
-[INFO]
-[INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < generate-sources @ spring-cloud-starter-consul-all <<<
-[INFO]
-[INFO] --- maven-javadoc-plugin:2.10.4:javadoc (default-cli) @ spring-cloud-starter-consul-all ---
-[INFO] ------------------------------------------------------------------------
-[INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 1.850 s
-[INFO] Finished at: 2016-09-25T01:40:59+00:00
-[INFO] Final Memory: 30M/356M
-[INFO] ------------------------------------------------------------------------
diff --git a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1637979078.txt b/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1637979078.txt
deleted file mode 100644
index 776e09cd..00000000
--- a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1637979078.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-Invoking Maven for the goals: [org.apache.maven.plugins:maven-javadoc-plugin:2.10.4:javadoc] with no properties
-
-M2_HOME=/home/jenkins/.m2/wrapper/dists/apache-maven-3.3.9-bin/2609u9g41na2l7ogackmif6fj2/apache-maven-3.3.9
-MAVEN_OPTS=null
-JAVA_HOME=/opt/jenkins/data/tools/hudson.model.JDK/jdk8/jdk1.8.0_91/jre/..
-JAVA_OPTS=null
-
-[INFO] Scanning for projects...
-[WARNING]
-[WARNING] Some problems were encountered while building the effective model for org.springframework.cloud:spring-cloud-starter-consul-all:jar:1.1.1.BUILD-SNAPSHOT
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 147, column 12
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 132, column 12
-[WARNING]
-[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
-[WARNING]
-[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
-[WARNING]
-[INFO]
-[INFO] ------------------------------------------------------------------------
-[INFO] Building Spring Cloud Starter Consul All 1.1.1.BUILD-SNAPSHOT
-[INFO] ------------------------------------------------------------------------
-[INFO]
-[INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > generate-sources @ spring-cloud-starter-consul-all >>>
-[INFO]
-[INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < generate-sources @ spring-cloud-starter-consul-all <<<
-[INFO]
-[INFO] --- maven-javadoc-plugin:2.10.4:javadoc (default-cli) @ spring-cloud-starter-consul-all ---
-[INFO] ------------------------------------------------------------------------
-[INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 1.683 s
-[INFO] Finished at: 2016-09-23T13:41:01+00:00
-[INFO] Final Memory: 29M/356M
-[INFO] ------------------------------------------------------------------------
diff --git a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1686262145.txt b/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1686262145.txt
deleted file mode 100644
index 4fcd8ce2..00000000
--- a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1686262145.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-Invoking Maven for the goals: [org.apache.maven.plugins:maven-javadoc-plugin:2.10.4:javadoc] with no properties
-
-M2_HOME=/home/jenkins/.m2/wrapper/dists/apache-maven-3.3.9-bin/2609u9g41na2l7ogackmif6fj2/apache-maven-3.3.9
-MAVEN_OPTS=null
-JAVA_HOME=/opt/jenkins/data/tools/hudson.model.JDK/jdk8/jdk1.8.0_91/jre/..
-JAVA_OPTS=null
-
-[INFO] Scanning for projects...
-[WARNING]
-[WARNING] Some problems were encountered while building the effective model for org.springframework.cloud:spring-cloud-starter-consul-all:jar:1.1.1.BUILD-SNAPSHOT
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 147, column 12
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 132, column 12
-[WARNING]
-[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
-[WARNING]
-[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
-[WARNING]
-[INFO]
-[INFO] ------------------------------------------------------------------------
-[INFO] Building Spring Cloud Starter Consul All 1.1.1.BUILD-SNAPSHOT
-[INFO] ------------------------------------------------------------------------
-[INFO]
-[INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > generate-sources @ spring-cloud-starter-consul-all >>>
-[INFO]
-[INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < generate-sources @ spring-cloud-starter-consul-all <<<
-[INFO]
-[INFO] --- maven-javadoc-plugin:2.10.4:javadoc (default-cli) @ spring-cloud-starter-consul-all ---
-[INFO] ------------------------------------------------------------------------
-[INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 1.731 s
-[INFO] Finished at: 2016-09-24T07:41:04+00:00
-[INFO] Final Memory: 29M/356M
-[INFO] ------------------------------------------------------------------------
diff --git a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1770692408.txt b/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1770692408.txt
deleted file mode 100644
index bed7414d..00000000
--- a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1770692408.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-Invoking Maven for the goals: [org.apache.maven.plugins:maven-javadoc-plugin:2.10.4:javadoc] with no properties
-
-M2_HOME=/home/jenkins/.m2/wrapper/dists/apache-maven-3.3.9-bin/2609u9g41na2l7ogackmif6fj2/apache-maven-3.3.9
-MAVEN_OPTS=null
-JAVA_HOME=/opt/jenkins/data/tools/hudson.model.JDK/jdk8/jdk1.8.0_91/jre/..
-JAVA_OPTS=null
-
-[INFO] Scanning for projects...
-[WARNING]
-[WARNING] Some problems were encountered while building the effective model for org.springframework.cloud:spring-cloud-starter-consul-all:jar:1.1.1.BUILD-SNAPSHOT
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 147, column 12
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 132, column 12
-[WARNING]
-[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
-[WARNING]
-[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
-[WARNING]
-[INFO]
-[INFO] ------------------------------------------------------------------------
-[INFO] Building Spring Cloud Starter Consul All 1.1.1.BUILD-SNAPSHOT
-[INFO] ------------------------------------------------------------------------
-[INFO]
-[INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > generate-sources @ spring-cloud-starter-consul-all >>>
-[INFO]
-[INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < generate-sources @ spring-cloud-starter-consul-all <<<
-[INFO]
-[INFO] --- maven-javadoc-plugin:2.10.4:javadoc (default-cli) @ spring-cloud-starter-consul-all ---
-[INFO] ------------------------------------------------------------------------
-[INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 1.515 s
-[INFO] Finished at: 2016-09-24T16:40:59+00:00
-[INFO] Final Memory: 30M/356M
-[INFO] ------------------------------------------------------------------------
diff --git a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1828754789.txt b/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1828754789.txt
deleted file mode 100644
index a0185b81..00000000
--- a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1828754789.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-Invoking Maven for the goals: [org.apache.maven.plugins:maven-javadoc-plugin:2.10.4:javadoc] with no properties
-
-M2_HOME=/home/jenkins/.m2/wrapper/dists/apache-maven-3.3.9-bin/2609u9g41na2l7ogackmif6fj2/apache-maven-3.3.9
-MAVEN_OPTS=null
-JAVA_HOME=/opt/jenkins/data/tools/hudson.model.JDK/jdk8/jdk1.8.0_91/jre/..
-JAVA_OPTS=null
-
-[INFO] Scanning for projects...
-[WARNING]
-[WARNING] Some problems were encountered while building the effective model for org.springframework.cloud:spring-cloud-starter-consul-all:jar:1.1.0.BUILD-SNAPSHOT
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 147, column 12
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 132, column 12
-[WARNING]
-[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
-[WARNING]
-[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
-[WARNING]
-[INFO]
-[INFO] ------------------------------------------------------------------------
-[INFO] Building Spring Cloud Starter Consul All 1.1.0.BUILD-SNAPSHOT
-[INFO] ------------------------------------------------------------------------
-[INFO]
-[INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > generate-sources @ spring-cloud-starter-consul-all >>>
-[INFO]
-[INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < generate-sources @ spring-cloud-starter-consul-all <<<
-[INFO]
-[INFO] --- maven-javadoc-plugin:2.10.4:javadoc (default-cli) @ spring-cloud-starter-consul-all ---
-[INFO] ------------------------------------------------------------------------
-[INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 1.645 s
-[INFO] Finished at: 2016-09-22T19:40:57+00:00
-[INFO] Final Memory: 30M/356M
-[INFO] ------------------------------------------------------------------------
diff --git a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1871535867.txt b/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1871535867.txt
deleted file mode 100644
index 0fff9a86..00000000
--- a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1871535867.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-Invoking Maven for the goals: [org.apache.maven.plugins:maven-javadoc-plugin:2.10.4:javadoc] with no properties
-
-M2_HOME=/home/jenkins/.m2/wrapper/dists/apache-maven-3.3.9-bin/2609u9g41na2l7ogackmif6fj2/apache-maven-3.3.9
-MAVEN_OPTS=null
-JAVA_HOME=/opt/jenkins/data/tools/hudson.model.JDK/jdk8/jdk1.8.0_91/jre/..
-JAVA_OPTS=null
-
-[INFO] Scanning for projects...
-[WARNING]
-[WARNING] Some problems were encountered while building the effective model for org.springframework.cloud:spring-cloud-starter-consul-all:jar:1.1.1.BUILD-SNAPSHOT
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 147, column 12
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 132, column 12
-[WARNING]
-[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
-[WARNING]
-[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
-[WARNING]
-[INFO]
-[INFO] ------------------------------------------------------------------------
-[INFO] Building Spring Cloud Starter Consul All 1.1.1.BUILD-SNAPSHOT
-[INFO] ------------------------------------------------------------------------
-[INFO]
-[INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > generate-sources @ spring-cloud-starter-consul-all >>>
-[INFO]
-[INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < generate-sources @ spring-cloud-starter-consul-all <<<
-[INFO]
-[INFO] --- maven-javadoc-plugin:2.10.4:javadoc (default-cli) @ spring-cloud-starter-consul-all ---
-[INFO] ------------------------------------------------------------------------
-[INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 1.649 s
-[INFO] Finished at: 2016-09-23T10:40:59+00:00
-[INFO] Final Memory: 30M/356M
-[INFO] ------------------------------------------------------------------------
diff --git a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin18925836.txt b/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin18925836.txt
deleted file mode 100644
index dcf6c094..00000000
--- a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin18925836.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-Invoking Maven for the goals: [org.apache.maven.plugins:maven-javadoc-plugin:2.10.4:javadoc] with no properties
-
-M2_HOME=/home/jenkins/.m2/wrapper/dists/apache-maven-3.3.9-bin/2609u9g41na2l7ogackmif6fj2/apache-maven-3.3.9
-MAVEN_OPTS=null
-JAVA_HOME=/opt/jenkins/data/tools/hudson.model.JDK/jdk8/jdk1.8.0_91/jre/..
-JAVA_OPTS=null
-
-[INFO] Scanning for projects...
-[WARNING]
-[WARNING] Some problems were encountered while building the effective model for org.springframework.cloud:spring-cloud-starter-consul-all:jar:1.1.1.BUILD-SNAPSHOT
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 147, column 12
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 132, column 12
-[WARNING]
-[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
-[WARNING]
-[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
-[WARNING]
-[INFO]
-[INFO] ------------------------------------------------------------------------
-[INFO] Building Spring Cloud Starter Consul All 1.1.1.BUILD-SNAPSHOT
-[INFO] ------------------------------------------------------------------------
-[INFO]
-[INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > generate-sources @ spring-cloud-starter-consul-all >>>
-[INFO]
-[INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < generate-sources @ spring-cloud-starter-consul-all <<<
-[INFO]
-[INFO] --- maven-javadoc-plugin:2.10.4:javadoc (default-cli) @ spring-cloud-starter-consul-all ---
-[INFO] ------------------------------------------------------------------------
-[INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 1.633 s
-[INFO] Finished at: 2016-09-24T19:41:01+00:00
-[INFO] Final Memory: 30M/356M
-[INFO] ------------------------------------------------------------------------
diff --git a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1978869043.txt b/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1978869043.txt
deleted file mode 100644
index 979f59dc..00000000
--- a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1978869043.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-Invoking Maven for the goals: [org.apache.maven.plugins:maven-javadoc-plugin:2.10.4:javadoc] with no properties
-
-M2_HOME=/home/jenkins/.m2/wrapper/dists/apache-maven-3.3.9-bin/2609u9g41na2l7ogackmif6fj2/apache-maven-3.3.9
-MAVEN_OPTS=null
-JAVA_HOME=/opt/jenkins/data/tools/hudson.model.JDK/jdk8/jdk1.8.0_91/jre/..
-JAVA_OPTS=null
-
-[INFO] Scanning for projects...
-[WARNING]
-[WARNING] Some problems were encountered while building the effective model for org.springframework.cloud:spring-cloud-starter-consul-all:jar:1.1.1.BUILD-SNAPSHOT
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 147, column 12
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 132, column 12
-[WARNING]
-[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
-[WARNING]
-[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
-[WARNING]
-[INFO]
-[INFO] ------------------------------------------------------------------------
-[INFO] Building Spring Cloud Starter Consul All 1.1.1.BUILD-SNAPSHOT
-[INFO] ------------------------------------------------------------------------
-[INFO]
-[INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > generate-sources @ spring-cloud-starter-consul-all >>>
-[INFO]
-[INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < generate-sources @ spring-cloud-starter-consul-all <<<
-[INFO]
-[INFO] --- maven-javadoc-plugin:2.10.4:javadoc (default-cli) @ spring-cloud-starter-consul-all ---
-[INFO] ------------------------------------------------------------------------
-[INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 1.550 s
-[INFO] Finished at: 2016-09-22T22:40:56+00:00
-[INFO] Final Memory: 31M/356M
-[INFO] ------------------------------------------------------------------------
diff --git a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1986238974.txt b/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1986238974.txt
deleted file mode 100644
index cd687f4f..00000000
--- a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin1986238974.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-Invoking Maven for the goals: [org.apache.maven.plugins:maven-javadoc-plugin:2.10.4:javadoc] with no properties
-
-M2_HOME=/home/jenkins/.m2/wrapper/dists/apache-maven-3.3.9-bin/2609u9g41na2l7ogackmif6fj2/apache-maven-3.3.9
-MAVEN_OPTS=null
-JAVA_HOME=/opt/jenkins/data/tools/hudson.model.JDK/jdk8/jdk1.8.0_91/jre/..
-JAVA_OPTS=null
-
-[INFO] Scanning for projects...
-[WARNING]
-[WARNING] Some problems were encountered while building the effective model for org.springframework.cloud:spring-cloud-starter-consul-all:jar:1.1.1.BUILD-SNAPSHOT
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 147, column 12
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 132, column 12
-[WARNING]
-[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
-[WARNING]
-[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
-[WARNING]
-[INFO]
-[INFO] ------------------------------------------------------------------------
-[INFO] Building Spring Cloud Starter Consul All 1.1.1.BUILD-SNAPSHOT
-[INFO] ------------------------------------------------------------------------
-[INFO]
-[INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > generate-sources @ spring-cloud-starter-consul-all >>>
-[INFO]
-[INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < generate-sources @ spring-cloud-starter-consul-all <<<
-[INFO]
-[INFO] --- maven-javadoc-plugin:2.10.4:javadoc (default-cli) @ spring-cloud-starter-consul-all ---
-[INFO] ------------------------------------------------------------------------
-[INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 1.814 s
-[INFO] Finished at: 2016-09-23T01:41:03+00:00
-[INFO] Final Memory: 30M/356M
-[INFO] ------------------------------------------------------------------------
diff --git a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin2124317239.txt b/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin2124317239.txt
deleted file mode 100644
index d07260d7..00000000
--- a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin2124317239.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-Invoking Maven for the goals: [org.apache.maven.plugins:maven-javadoc-plugin:2.10.4:javadoc] with no properties
-
-M2_HOME=/home/jenkins/.m2/wrapper/dists/apache-maven-3.3.9-bin/2609u9g41na2l7ogackmif6fj2/apache-maven-3.3.9
-MAVEN_OPTS=null
-JAVA_HOME=/opt/jenkins/data/tools/hudson.model.JDK/jdk8/jdk1.8.0_91/jre/..
-JAVA_OPTS=null
-
-[INFO] Scanning for projects...
-[WARNING]
-[WARNING] Some problems were encountered while building the effective model for org.springframework.cloud:spring-cloud-starter-consul-all:jar:1.1.1.BUILD-SNAPSHOT
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 147, column 12
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 132, column 12
-[WARNING]
-[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
-[WARNING]
-[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
-[WARNING]
-[INFO]
-[INFO] ------------------------------------------------------------------------
-[INFO] Building Spring Cloud Starter Consul All 1.1.1.BUILD-SNAPSHOT
-[INFO] ------------------------------------------------------------------------
-[INFO]
-[INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > generate-sources @ spring-cloud-starter-consul-all >>>
-[INFO]
-[INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < generate-sources @ spring-cloud-starter-consul-all <<<
-[INFO]
-[INFO] --- maven-javadoc-plugin:2.10.4:javadoc (default-cli) @ spring-cloud-starter-consul-all ---
-[INFO] ------------------------------------------------------------------------
-[INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 1.727 s
-[INFO] Finished at: 2016-09-23T22:41:11+00:00
-[INFO] Final Memory: 30M/356M
-[INFO] ------------------------------------------------------------------------
diff --git a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin28882402.txt b/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin28882402.txt
deleted file mode 100644
index 35cb6d4d..00000000
--- a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin28882402.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-Invoking Maven for the goals: [org.apache.maven.plugins:maven-javadoc-plugin:2.10.4:javadoc] with no properties
-
-M2_HOME=/home/jenkins/.m2/wrapper/dists/apache-maven-3.3.9-bin/2609u9g41na2l7ogackmif6fj2/apache-maven-3.3.9
-MAVEN_OPTS=null
-JAVA_HOME=/opt/jenkins/data/tools/hudson.model.JDK/jdk8/jdk1.8.0_91/jre/..
-JAVA_OPTS=null
-
-[INFO] Scanning for projects...
-[WARNING]
-[WARNING] Some problems were encountered while building the effective model for org.springframework.cloud:spring-cloud-starter-consul-all:jar:1.1.1.BUILD-SNAPSHOT
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 147, column 12
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 132, column 12
-[WARNING]
-[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
-[WARNING]
-[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
-[WARNING]
-[INFO]
-[INFO] ------------------------------------------------------------------------
-[INFO] Building Spring Cloud Starter Consul All 1.1.1.BUILD-SNAPSHOT
-[INFO] ------------------------------------------------------------------------
-[INFO]
-[INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > generate-sources @ spring-cloud-starter-consul-all >>>
-[INFO]
-[INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < generate-sources @ spring-cloud-starter-consul-all <<<
-[INFO]
-[INFO] --- maven-javadoc-plugin:2.10.4:javadoc (default-cli) @ spring-cloud-starter-consul-all ---
-[INFO] ------------------------------------------------------------------------
-[INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 1.596 s
-[INFO] Finished at: 2016-09-22T22:17:21+00:00
-[INFO] Final Memory: 28M/356M
-[INFO] ------------------------------------------------------------------------
diff --git a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin331393659.txt b/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin331393659.txt
deleted file mode 100644
index f931bc51..00000000
--- a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin331393659.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-Invoking Maven for the goals: [org.apache.maven.plugins:maven-javadoc-plugin:2.10.4:javadoc] with no properties
-
-M2_HOME=/home/jenkins/.m2/wrapper/dists/apache-maven-3.3.9-bin/2609u9g41na2l7ogackmif6fj2/apache-maven-3.3.9
-MAVEN_OPTS=null
-JAVA_HOME=/opt/jenkins/data/tools/hudson.model.JDK/jdk8/jdk1.8.0_91/jre/..
-JAVA_OPTS=null
-
-[INFO] Scanning for projects...
-[WARNING]
-[WARNING] Some problems were encountered while building the effective model for org.springframework.cloud:spring-cloud-starter-consul-all:jar:1.1.1.BUILD-SNAPSHOT
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 147, column 12
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 132, column 12
-[WARNING]
-[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
-[WARNING]
-[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
-[WARNING]
-[INFO]
-[INFO] ------------------------------------------------------------------------
-[INFO] Building Spring Cloud Starter Consul All 1.1.1.BUILD-SNAPSHOT
-[INFO] ------------------------------------------------------------------------
-[INFO]
-[INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > generate-sources @ spring-cloud-starter-consul-all >>>
-[INFO]
-[INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < generate-sources @ spring-cloud-starter-consul-all <<<
-[INFO]
-[INFO] --- maven-javadoc-plugin:2.10.4:javadoc (default-cli) @ spring-cloud-starter-consul-all ---
-[INFO] ------------------------------------------------------------------------
-[INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 1.524 s
-[INFO] Finished at: 2016-09-23T04:41:01+00:00
-[INFO] Final Memory: 30M/356M
-[INFO] ------------------------------------------------------------------------
diff --git a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin440323717.txt b/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin440323717.txt
deleted file mode 100644
index 339a5f47..00000000
--- a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin440323717.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-Invoking Maven for the goals: [org.apache.maven.plugins:maven-javadoc-plugin:2.10.4:javadoc] with no properties
-
-M2_HOME=/home/jenkins/.m2/wrapper/dists/apache-maven-3.3.9-bin/2609u9g41na2l7ogackmif6fj2/apache-maven-3.3.9
-MAVEN_OPTS=null
-JAVA_HOME=/opt/jenkins/data/tools/hudson.model.JDK/jdk8/jdk1.8.0_91/jre/..
-JAVA_OPTS=null
-
-[INFO] Scanning for projects...
-[WARNING]
-[WARNING] Some problems were encountered while building the effective model for org.springframework.cloud:spring-cloud-starter-consul-all:jar:1.1.1.BUILD-SNAPSHOT
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 147, column 12
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 132, column 12
-[WARNING]
-[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
-[WARNING]
-[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
-[WARNING]
-[INFO]
-[INFO] ------------------------------------------------------------------------
-[INFO] Building Spring Cloud Starter Consul All 1.1.1.BUILD-SNAPSHOT
-[INFO] ------------------------------------------------------------------------
-[INFO]
-[INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > generate-sources @ spring-cloud-starter-consul-all >>>
-[INFO]
-[INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < generate-sources @ spring-cloud-starter-consul-all <<<
-[INFO]
-[INFO] --- maven-javadoc-plugin:2.10.4:javadoc (default-cli) @ spring-cloud-starter-consul-all ---
-[INFO] ------------------------------------------------------------------------
-[INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 1.622 s
-[INFO] Finished at: 2016-09-25T04:41:05+00:00
-[INFO] Final Memory: 30M/356M
-[INFO] ------------------------------------------------------------------------
diff --git a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin440895102.txt b/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin440895102.txt
deleted file mode 100644
index bea834c1..00000000
--- a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin440895102.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-Invoking Maven for the goals: [org.apache.maven.plugins:maven-javadoc-plugin:2.10.4:javadoc] with no properties
-
-M2_HOME=/home/jenkins/.m2/wrapper/dists/apache-maven-3.3.9-bin/2609u9g41na2l7ogackmif6fj2/apache-maven-3.3.9
-MAVEN_OPTS=null
-JAVA_HOME=/opt/jenkins/data/tools/hudson.model.JDK/jdk8/jdk1.8.0_91/jre/..
-JAVA_OPTS=null
-
-[INFO] Scanning for projects...
-[WARNING]
-[WARNING] Some problems were encountered while building the effective model for org.springframework.cloud:spring-cloud-starter-consul-all:jar:1.1.1.BUILD-SNAPSHOT
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 147, column 12
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 132, column 12
-[WARNING]
-[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
-[WARNING]
-[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
-[WARNING]
-[INFO]
-[INFO] ------------------------------------------------------------------------
-[INFO] Building Spring Cloud Starter Consul All 1.1.1.BUILD-SNAPSHOT
-[INFO] ------------------------------------------------------------------------
-[INFO]
-[INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > generate-sources @ spring-cloud-starter-consul-all >>>
-[INFO]
-[INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < generate-sources @ spring-cloud-starter-consul-all <<<
-[INFO]
-[INFO] --- maven-javadoc-plugin:2.10.4:javadoc (default-cli) @ spring-cloud-starter-consul-all ---
-[INFO] ------------------------------------------------------------------------
-[INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 1.823 s
-[INFO] Finished at: 2016-09-24T01:41:03+00:00
-[INFO] Final Memory: 31M/356M
-[INFO] ------------------------------------------------------------------------
diff --git a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin484960043.txt b/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin484960043.txt
deleted file mode 100644
index f5a78aa3..00000000
--- a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin484960043.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-Invoking Maven for the goals: [org.apache.maven.plugins:maven-javadoc-plugin:2.10.4:javadoc] with no properties
-
-M2_HOME=/home/jenkins/.m2/wrapper/dists/apache-maven-3.3.9-bin/2609u9g41na2l7ogackmif6fj2/apache-maven-3.3.9
-MAVEN_OPTS=null
-JAVA_HOME=/opt/jenkins/data/tools/hudson.model.JDK/jdk8/jdk1.8.0_91/jre/..
-JAVA_OPTS=null
-
-[INFO] Scanning for projects...
-[WARNING]
-[WARNING] Some problems were encountered while building the effective model for org.springframework.cloud:spring-cloud-starter-consul-all:jar:1.1.1.BUILD-SNAPSHOT
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 147, column 12
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 132, column 12
-[WARNING]
-[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
-[WARNING]
-[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
-[WARNING]
-[INFO]
-[INFO] ------------------------------------------------------------------------
-[INFO] Building Spring Cloud Starter Consul All 1.1.1.BUILD-SNAPSHOT
-[INFO] ------------------------------------------------------------------------
-[INFO]
-[INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > generate-sources @ spring-cloud-starter-consul-all >>>
-[INFO]
-[INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < generate-sources @ spring-cloud-starter-consul-all <<<
-[INFO]
-[INFO] --- maven-javadoc-plugin:2.10.4:javadoc (default-cli) @ spring-cloud-starter-consul-all ---
-[INFO] ------------------------------------------------------------------------
-[INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 1.559 s
-[INFO] Finished at: 2016-09-24T13:41:00+00:00
-[INFO] Final Memory: 30M/356M
-[INFO] ------------------------------------------------------------------------
diff --git a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin49392007.txt b/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin49392007.txt
deleted file mode 100644
index 2a1fd5aa..00000000
--- a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin49392007.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-Invoking Maven for the goals: [org.apache.maven.plugins:maven-javadoc-plugin:2.10.4:javadoc] with no properties
-
-M2_HOME=/home/jenkins/.m2/wrapper/dists/apache-maven-3.3.9-bin/2609u9g41na2l7ogackmif6fj2/apache-maven-3.3.9
-MAVEN_OPTS=null
-JAVA_HOME=/opt/jenkins/data/tools/hudson.model.JDK/jdk8/jdk1.8.0_91/jre/..
-JAVA_OPTS=null
-
-[INFO] Scanning for projects...
-[WARNING]
-[WARNING] Some problems were encountered while building the effective model for org.springframework.cloud:spring-cloud-starter-consul-all:jar:1.1.0.RELEASE
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.RELEASE, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.RELEASE/spring-cloud-build-1.2.1.RELEASE.pom, line 146, column 12
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.RELEASE, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.RELEASE/spring-cloud-build-1.2.1.RELEASE.pom, line 131, column 12
-[WARNING]
-[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
-[WARNING]
-[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
-[WARNING]
-[INFO]
-[INFO] ------------------------------------------------------------------------
-[INFO] Building Spring Cloud Starter Consul All 1.1.0.RELEASE
-[INFO] ------------------------------------------------------------------------
-[INFO]
-[INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > generate-sources @ spring-cloud-starter-consul-all >>>
-[INFO]
-[INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < generate-sources @ spring-cloud-starter-consul-all <<<
-[INFO]
-[INFO] --- maven-javadoc-plugin:2.10.4:javadoc (default-cli) @ spring-cloud-starter-consul-all ---
-[INFO] ------------------------------------------------------------------------
-[INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 1.513 s
-[INFO] Finished at: 2016-09-22T22:04:44+00:00
-[INFO] Final Memory: 29M/357M
-[INFO] ------------------------------------------------------------------------
diff --git a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin641261452.txt b/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin641261452.txt
deleted file mode 100644
index 061cfa20..00000000
--- a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin641261452.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-Invoking Maven for the goals: [org.apache.maven.plugins:maven-javadoc-plugin:2.10.4:javadoc] with no properties
-
-M2_HOME=/home/jenkins/.m2/wrapper/dists/apache-maven-3.3.9-bin/2609u9g41na2l7ogackmif6fj2/apache-maven-3.3.9
-MAVEN_OPTS=null
-JAVA_HOME=/opt/jenkins/data/tools/hudson.model.JDK/jdk8/jdk1.8.0_91/jre/..
-JAVA_OPTS=null
-
-[INFO] Scanning for projects...
-[WARNING]
-[WARNING] Some problems were encountered while building the effective model for org.springframework.cloud:spring-cloud-starter-consul-all:jar:1.1.1.BUILD-SNAPSHOT
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 147, column 12
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 132, column 12
-[WARNING]
-[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
-[WARNING]
-[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
-[WARNING]
-[INFO]
-[INFO] ------------------------------------------------------------------------
-[INFO] Building Spring Cloud Starter Consul All 1.1.1.BUILD-SNAPSHOT
-[INFO] ------------------------------------------------------------------------
-[INFO]
-[INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > generate-sources @ spring-cloud-starter-consul-all >>>
-[INFO]
-[INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < generate-sources @ spring-cloud-starter-consul-all <<<
-[INFO]
-[INFO] --- maven-javadoc-plugin:2.10.4:javadoc (default-cli) @ spring-cloud-starter-consul-all ---
-[INFO] ------------------------------------------------------------------------
-[INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 1.667 s
-[INFO] Finished at: 2016-09-24T04:41:04+00:00
-[INFO] Final Memory: 27M/225M
-[INFO] ------------------------------------------------------------------------
diff --git a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin689060615.txt b/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin689060615.txt
deleted file mode 100644
index 859ca4ba..00000000
--- a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin689060615.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-Invoking Maven for the goals: [org.apache.maven.plugins:maven-javadoc-plugin:2.10.4:javadoc] with no properties
-
-M2_HOME=/home/jenkins/.m2/wrapper/dists/apache-maven-3.3.9-bin/2609u9g41na2l7ogackmif6fj2/apache-maven-3.3.9
-MAVEN_OPTS=null
-JAVA_HOME=/opt/jenkins/data/tools/hudson.model.JDK/jdk8/jdk1.8.0_91/jre/..
-JAVA_OPTS=null
-
-[INFO] Scanning for projects...
-[WARNING]
-[WARNING] Some problems were encountered while building the effective model for org.springframework.cloud:spring-cloud-starter-consul-all:jar:1.1.1.BUILD-SNAPSHOT
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 147, column 12
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 132, column 12
-[WARNING]
-[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
-[WARNING]
-[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
-[WARNING]
-[INFO]
-[INFO] ------------------------------------------------------------------------
-[INFO] Building Spring Cloud Starter Consul All 1.1.1.BUILD-SNAPSHOT
-[INFO] ------------------------------------------------------------------------
-[INFO]
-[INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > generate-sources @ spring-cloud-starter-consul-all >>>
-[INFO]
-[INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < generate-sources @ spring-cloud-starter-consul-all <<<
-[INFO]
-[INFO] --- maven-javadoc-plugin:2.10.4:javadoc (default-cli) @ spring-cloud-starter-consul-all ---
-[INFO] ------------------------------------------------------------------------
-[INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 1.675 s
-[INFO] Finished at: 2016-09-23T19:41:16+00:00
-[INFO] Final Memory: 30M/356M
-[INFO] ------------------------------------------------------------------------
diff --git a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin922951148.txt b/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin922951148.txt
deleted file mode 100644
index ccf93bed..00000000
--- a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin922951148.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-Invoking Maven for the goals: [org.apache.maven.plugins:maven-javadoc-plugin:2.10.4:javadoc] with no properties
-
-M2_HOME=/home/jenkins/.m2/wrapper/dists/apache-maven-3.3.9-bin/2609u9g41na2l7ogackmif6fj2/apache-maven-3.3.9
-MAVEN_OPTS=null
-JAVA_HOME=/opt/jenkins/data/tools/hudson.model.JDK/jdk8/jdk1.8.0_91/jre/..
-JAVA_OPTS=null
-
-[INFO] Scanning for projects...
-[WARNING]
-[WARNING] Some problems were encountered while building the effective model for org.springframework.cloud:spring-cloud-starter-consul-all:jar:1.1.1.BUILD-SNAPSHOT
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 147, column 12
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 132, column 12
-[WARNING]
-[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
-[WARNING]
-[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
-[WARNING]
-[INFO]
-[INFO] ------------------------------------------------------------------------
-[INFO] Building Spring Cloud Starter Consul All 1.1.1.BUILD-SNAPSHOT
-[INFO] ------------------------------------------------------------------------
-[INFO]
-[INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > generate-sources @ spring-cloud-starter-consul-all >>>
-[INFO]
-[INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < generate-sources @ spring-cloud-starter-consul-all <<<
-[INFO]
-[INFO] --- maven-javadoc-plugin:2.10.4:javadoc (default-cli) @ spring-cloud-starter-consul-all ---
-[INFO] ------------------------------------------------------------------------
-[INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 1.628 s
-[INFO] Finished at: 2016-09-25T07:41:05+00:00
-[INFO] Final Memory: 27M/225M
-[INFO] ------------------------------------------------------------------------
diff --git a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin951853055.txt b/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin951853055.txt
deleted file mode 100644
index 2975d58a..00000000
--- a/spring-cloud-consul-sample/target/invoker/maven-javadoc-plugin951853055.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-Invoking Maven for the goals: [org.apache.maven.plugins:maven-javadoc-plugin:2.10.4:javadoc] with no properties
-
-M2_HOME=/home/jenkins/.m2/wrapper/dists/apache-maven-3.3.9-bin/2609u9g41na2l7ogackmif6fj2/apache-maven-3.3.9
-MAVEN_OPTS=null
-JAVA_HOME=/opt/jenkins/data/tools/hudson.model.JDK/jdk8/jdk1.8.0_91/jre/..
-JAVA_OPTS=null
-
-[INFO] Scanning for projects...
-[WARNING]
-[WARNING] Some problems were encountered while building the effective model for org.springframework.cloud:spring-cloud-starter-consul-all:jar:1.1.1.BUILD-SNAPSHOT
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 147, column 12
-[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-javadoc-plugin is missing. @ org.springframework.cloud:spring-cloud-build:1.2.1.BUILD-SNAPSHOT, /opt/jenkins/.m2/repository/org/springframework/cloud/spring-cloud-build/1.2.1.BUILD-SNAPSHOT/spring-cloud-build-1.2.1.BUILD-SNAPSHOT.pom, line 132, column 12
-[WARNING]
-[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
-[WARNING]
-[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
-[WARNING]
-[INFO]
-[INFO] ------------------------------------------------------------------------
-[INFO] Building Spring Cloud Starter Consul All 1.1.1.BUILD-SNAPSHOT
-[INFO] ------------------------------------------------------------------------
-[INFO]
-[INFO] >>> maven-javadoc-plugin:2.10.4:javadoc (default-cli) > generate-sources @ spring-cloud-starter-consul-all >>>
-[INFO]
-[INFO] <<< maven-javadoc-plugin:2.10.4:javadoc (default-cli) < generate-sources @ spring-cloud-starter-consul-all <<<
-[INFO]
-[INFO] --- maven-javadoc-plugin:2.10.4:javadoc (default-cli) @ spring-cloud-starter-consul-all ---
-[INFO] ------------------------------------------------------------------------
-[INFO] BUILD SUCCESS
-[INFO] ------------------------------------------------------------------------
-[INFO] Total time: 1.621 s
-[INFO] Finished at: 2016-09-24T10:41:02+00:00
-[INFO] Final Memory: 30M/356M
-[INFO] ------------------------------------------------------------------------
diff --git a/spring-cloud-consul-sample/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml b/spring-cloud-consul-sample/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml
deleted file mode 100644
index 8b89c977..00000000
--- a/spring-cloud-consul-sample/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
- src/main/javadoc
-
diff --git a/spring-cloud-consul-sample/target/javadoc-bundle-options/package-list b/spring-cloud-consul-sample/target/javadoc-bundle-options/package-list
deleted file mode 100644
index b52fe94b..00000000
--- a/spring-cloud-consul-sample/target/javadoc-bundle-options/package-list
+++ /dev/null
@@ -1,209 +0,0 @@
-java.applet
-java.awt
-java.awt.color
-java.awt.datatransfer
-java.awt.dnd
-java.awt.event
-java.awt.font
-java.awt.geom
-java.awt.im
-java.awt.im.spi
-java.awt.image
-java.awt.image.renderable
-java.awt.print
-java.beans
-java.beans.beancontext
-java.io
-java.lang
-java.lang.annotation
-java.lang.instrument
-java.lang.invoke
-java.lang.management
-java.lang.ref
-java.lang.reflect
-java.math
-java.net
-java.nio
-java.nio.channels
-java.nio.channels.spi
-java.nio.charset
-java.nio.charset.spi
-java.nio.file
-java.nio.file.attribute
-java.nio.file.spi
-java.rmi
-java.rmi.activation
-java.rmi.dgc
-java.rmi.registry
-java.rmi.server
-java.security
-java.security.acl
-java.security.cert
-java.security.interfaces
-java.security.spec
-java.sql
-java.text
-java.text.spi
-java.util
-java.util.concurrent
-java.util.concurrent.atomic
-java.util.concurrent.locks
-java.util.jar
-java.util.logging
-java.util.prefs
-java.util.regex
-java.util.spi
-java.util.zip
-javax.accessibility
-javax.activation
-javax.activity
-javax.annotation
-javax.annotation.processing
-javax.crypto
-javax.crypto.interfaces
-javax.crypto.spec
-javax.imageio
-javax.imageio.event
-javax.imageio.metadata
-javax.imageio.plugins.bmp
-javax.imageio.plugins.jpeg
-javax.imageio.spi
-javax.imageio.stream
-javax.jws
-javax.jws.soap
-javax.lang.model
-javax.lang.model.element
-javax.lang.model.type
-javax.lang.model.util
-javax.management
-javax.management.loading
-javax.management.modelmbean
-javax.management.monitor
-javax.management.openmbean
-javax.management.relation
-javax.management.remote
-javax.management.remote.rmi
-javax.management.timer
-javax.naming
-javax.naming.directory
-javax.naming.event
-javax.naming.ldap
-javax.naming.spi
-javax.net
-javax.net.ssl
-javax.print
-javax.print.attribute
-javax.print.attribute.standard
-javax.print.event
-javax.rmi
-javax.rmi.CORBA
-javax.rmi.ssl
-javax.script
-javax.security.auth
-javax.security.auth.callback
-javax.security.auth.kerberos
-javax.security.auth.login
-javax.security.auth.spi
-javax.security.auth.x500
-javax.security.cert
-javax.security.sasl
-javax.sound.midi
-javax.sound.midi.spi
-javax.sound.sampled
-javax.sound.sampled.spi
-javax.sql
-javax.sql.rowset
-javax.sql.rowset.serial
-javax.sql.rowset.spi
-javax.swing
-javax.swing.border
-javax.swing.colorchooser
-javax.swing.event
-javax.swing.filechooser
-javax.swing.plaf
-javax.swing.plaf.basic
-javax.swing.plaf.metal
-javax.swing.plaf.multi
-javax.swing.plaf.nimbus
-javax.swing.plaf.synth
-javax.swing.table
-javax.swing.text
-javax.swing.text.html
-javax.swing.text.html.parser
-javax.swing.text.rtf
-javax.swing.tree
-javax.swing.undo
-javax.tools
-javax.transaction
-javax.transaction.xa
-javax.xml
-javax.xml.bind
-javax.xml.bind.annotation
-javax.xml.bind.annotation.adapters
-javax.xml.bind.attachment
-javax.xml.bind.helpers
-javax.xml.bind.util
-javax.xml.crypto
-javax.xml.crypto.dom
-javax.xml.crypto.dsig
-javax.xml.crypto.dsig.dom
-javax.xml.crypto.dsig.keyinfo
-javax.xml.crypto.dsig.spec
-javax.xml.datatype
-javax.xml.namespace
-javax.xml.parsers
-javax.xml.soap
-javax.xml.stream
-javax.xml.stream.events
-javax.xml.stream.util
-javax.xml.transform
-javax.xml.transform.dom
-javax.xml.transform.sax
-javax.xml.transform.stax
-javax.xml.transform.stream
-javax.xml.validation
-javax.xml.ws
-javax.xml.ws.handler
-javax.xml.ws.handler.soap
-javax.xml.ws.http
-javax.xml.ws.soap
-javax.xml.ws.spi
-javax.xml.ws.spi.http
-javax.xml.ws.wsaddressing
-javax.xml.xpath
-org.ietf.jgss
-org.omg.CORBA
-org.omg.CORBA.DynAnyPackage
-org.omg.CORBA.ORBPackage
-org.omg.CORBA.TypeCodePackage
-org.omg.CORBA.portable
-org.omg.CORBA_2_3
-org.omg.CORBA_2_3.portable
-org.omg.CosNaming
-org.omg.CosNaming.NamingContextExtPackage
-org.omg.CosNaming.NamingContextPackage
-org.omg.Dynamic
-org.omg.DynamicAny
-org.omg.DynamicAny.DynAnyFactoryPackage
-org.omg.DynamicAny.DynAnyPackage
-org.omg.IOP
-org.omg.IOP.CodecFactoryPackage
-org.omg.IOP.CodecPackage
-org.omg.Messaging
-org.omg.PortableInterceptor
-org.omg.PortableInterceptor.ORBInitInfoPackage
-org.omg.PortableServer
-org.omg.PortableServer.CurrentPackage
-org.omg.PortableServer.POAManagerPackage
-org.omg.PortableServer.POAPackage
-org.omg.PortableServer.ServantLocatorPackage
-org.omg.PortableServer.portable
-org.omg.SendingContext
-org.omg.stub.java.rmi
-org.w3c.dom
-org.w3c.dom.bootstrap
-org.w3c.dom.events
-org.w3c.dom.ls
-org.xml.sax
-org.xml.sax.ext
-org.xml.sax.helpers
diff --git a/spring-cloud-consul-sample/target/maven-archiver/pom.properties b/spring-cloud-consul-sample/target/maven-archiver/pom.properties
deleted file mode 100644
index 65834af9..00000000
--- a/spring-cloud-consul-sample/target/maven-archiver/pom.properties
+++ /dev/null
@@ -1,5 +0,0 @@
-#Generated by Maven
-#Thu Sep 22 13:40:47 UTC 2016
-version=1.1.0.BUILD-SNAPSHOT
-groupId=org.springframework.cloud
-artifactId=spring-cloud-consul-sample
diff --git a/spring-cloud-consul-sample/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/spring-cloud-consul-sample/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
deleted file mode 100644
index b5617cf3..00000000
--- a/spring-cloud-consul-sample/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
+++ /dev/null
@@ -1,4 +0,0 @@
-org/springframework/cloud/consul/sample/SampleConsulApplication.class
-META-INF/spring-configuration-metadata.json
-org/springframework/cloud/consul/sample/SampleConsulApplication$SampleClient.class
-org/springframework/cloud/consul/sample/SampleProperties.class
diff --git a/spring-cloud-consul-sample/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/spring-cloud-consul-sample/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
deleted file mode 100644
index 7c46558a..00000000
--- a/spring-cloud-consul-sample/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
+++ /dev/null
@@ -1,2 +0,0 @@
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-sample/src/main/java/org/springframework/cloud/consul/sample/SampleProperties.java
-/opt/jenkins/data/workspace/spring-cloud-consul-master-ci/spring-cloud-consul-sample/src/main/java/org/springframework/cloud/consul/sample/SampleConsulApplication.java
diff --git a/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.0.BUILD-SNAPSHOT-javadoc.jar b/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.0.BUILD-SNAPSHOT-javadoc.jar
deleted file mode 100644
index b9a82324..00000000
Binary files a/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.0.BUILD-SNAPSHOT-javadoc.jar and /dev/null differ
diff --git a/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.0.BUILD-SNAPSHOT-sources.jar b/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.0.BUILD-SNAPSHOT-sources.jar
deleted file mode 100644
index b9290d8d..00000000
Binary files a/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.0.BUILD-SNAPSHOT-sources.jar and /dev/null differ
diff --git a/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.0.BUILD-SNAPSHOT.jar b/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.0.BUILD-SNAPSHOT.jar
deleted file mode 100644
index 36479905..00000000
Binary files a/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.0.BUILD-SNAPSHOT.jar and /dev/null differ
diff --git a/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.0.BUILD-SNAPSHOT.jar.original b/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.0.BUILD-SNAPSHOT.jar.original
deleted file mode 100644
index 5ad4a169..00000000
Binary files a/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.0.BUILD-SNAPSHOT.jar.original and /dev/null differ
diff --git a/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.0.RELEASE-javadoc.jar b/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.0.RELEASE-javadoc.jar
deleted file mode 100644
index 7ae9ca16..00000000
Binary files a/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.0.RELEASE-javadoc.jar and /dev/null differ
diff --git a/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.0.RELEASE-sources.jar b/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.0.RELEASE-sources.jar
deleted file mode 100644
index cbc01674..00000000
Binary files a/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.0.RELEASE-sources.jar and /dev/null differ
diff --git a/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.0.RELEASE.jar b/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.0.RELEASE.jar
deleted file mode 100644
index 1e7d5c04..00000000
Binary files a/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.0.RELEASE.jar and /dev/null differ
diff --git a/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.0.RELEASE.jar.original b/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.0.RELEASE.jar.original
deleted file mode 100644
index 31581747..00000000
Binary files a/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.0.RELEASE.jar.original and /dev/null differ
diff --git a/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.1.BUILD-SNAPSHOT-javadoc.jar b/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.1.BUILD-SNAPSHOT-javadoc.jar
deleted file mode 100644
index bc87d2df..00000000
Binary files a/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.1.BUILD-SNAPSHOT-javadoc.jar and /dev/null differ
diff --git a/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.1.BUILD-SNAPSHOT-sources.jar b/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.1.BUILD-SNAPSHOT-sources.jar
deleted file mode 100644
index 6c234eb8..00000000
Binary files a/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.1.BUILD-SNAPSHOT-sources.jar and /dev/null differ
diff --git a/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.1.BUILD-SNAPSHOT.jar b/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.1.BUILD-SNAPSHOT.jar
deleted file mode 100644
index 9c755b7d..00000000
Binary files a/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.1.BUILD-SNAPSHOT.jar and /dev/null differ
diff --git a/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.1.BUILD-SNAPSHOT.jar.original b/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.1.BUILD-SNAPSHOT.jar.original
deleted file mode 100644
index 3e2a4bad..00000000
Binary files a/spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.1.1.BUILD-SNAPSHOT.jar.original and /dev/null differ
diff --git a/spring-cloud-starter-consul-all/target/classes/META-INF/spring.provides b/spring-cloud-starter-consul-all/target/classes/META-INF/spring.provides
deleted file mode 100644
index 18c222fc..00000000
--- a/spring-cloud-starter-consul-all/target/classes/META-INF/spring.provides
+++ /dev/null
@@ -1 +0,0 @@
-provides: spring-cloud-consul-bus, spring-cloud-consul-config, spring-cloud-consul-discovery, spring-cloud-consul-ui
\ No newline at end of file
diff --git a/spring-cloud-starter-consul-all/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml b/spring-cloud-starter-consul-all/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml
deleted file mode 100644
index 8b89c977..00000000
--- a/spring-cloud-starter-consul-all/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
- src/main/javadoc
-
diff --git a/spring-cloud-starter-consul-all/target/maven-archiver/pom.properties b/spring-cloud-starter-consul-all/target/maven-archiver/pom.properties
deleted file mode 100644
index fc587198..00000000
--- a/spring-cloud-starter-consul-all/target/maven-archiver/pom.properties
+++ /dev/null
@@ -1,5 +0,0 @@
-#Generated by Maven
-#Thu Sep 22 13:40:45 UTC 2016
-version=1.1.0.BUILD-SNAPSHOT
-groupId=org.springframework.cloud
-artifactId=spring-cloud-starter-consul-all
diff --git a/spring-cloud-starter-consul-all/target/spring-cloud-starter-consul-all-1.1.0.BUILD-SNAPSHOT-sources.jar b/spring-cloud-starter-consul-all/target/spring-cloud-starter-consul-all-1.1.0.BUILD-SNAPSHOT-sources.jar
deleted file mode 100644
index 8302f1bf..00000000
Binary files a/spring-cloud-starter-consul-all/target/spring-cloud-starter-consul-all-1.1.0.BUILD-SNAPSHOT-sources.jar and /dev/null differ
diff --git a/spring-cloud-starter-consul-all/target/spring-cloud-starter-consul-all-1.1.0.BUILD-SNAPSHOT.jar b/spring-cloud-starter-consul-all/target/spring-cloud-starter-consul-all-1.1.0.BUILD-SNAPSHOT.jar
deleted file mode 100644
index c43a344a..00000000
Binary files a/spring-cloud-starter-consul-all/target/spring-cloud-starter-consul-all-1.1.0.BUILD-SNAPSHOT.jar and /dev/null differ
diff --git a/spring-cloud-starter-consul-all/target/spring-cloud-starter-consul-all-1.1.0.RELEASE-sources.jar b/spring-cloud-starter-consul-all/target/spring-cloud-starter-consul-all-1.1.0.RELEASE-sources.jar
deleted file mode 100644
index 3a969caf..00000000
Binary files a/spring-cloud-starter-consul-all/target/spring-cloud-starter-consul-all-1.1.0.RELEASE-sources.jar and /dev/null differ
diff --git a/spring-cloud-starter-consul-all/target/spring-cloud-starter-consul-all-1.1.0.RELEASE.jar b/spring-cloud-starter-consul-all/target/spring-cloud-starter-consul-all-1.1.0.RELEASE.jar
deleted file mode 100644
index e25b9dab..00000000
Binary files a/spring-cloud-starter-consul-all/target/spring-cloud-starter-consul-all-1.1.0.RELEASE.jar and /dev/null differ
diff --git a/spring-cloud-starter-consul-all/target/spring-cloud-starter-consul-all-1.1.1.BUILD-SNAPSHOT-sources.jar b/spring-cloud-starter-consul-all/target/spring-cloud-starter-consul-all-1.1.1.BUILD-SNAPSHOT-sources.jar
deleted file mode 100644
index a34d1c59..00000000
Binary files a/spring-cloud-starter-consul-all/target/spring-cloud-starter-consul-all-1.1.1.BUILD-SNAPSHOT-sources.jar and /dev/null differ
diff --git a/spring-cloud-starter-consul-all/target/spring-cloud-starter-consul-all-1.1.1.BUILD-SNAPSHOT.jar b/spring-cloud-starter-consul-all/target/spring-cloud-starter-consul-all-1.1.1.BUILD-SNAPSHOT.jar
deleted file mode 100644
index 28ccaee5..00000000
Binary files a/spring-cloud-starter-consul-all/target/spring-cloud-starter-consul-all-1.1.1.BUILD-SNAPSHOT.jar and /dev/null differ
diff --git a/spring-cloud-starter-consul-bus/target/classes/META-INF/spring.provides b/spring-cloud-starter-consul-bus/target/classes/META-INF/spring.provides
deleted file mode 100644
index 7e37bc1f..00000000
--- a/spring-cloud-starter-consul-bus/target/classes/META-INF/spring.provides
+++ /dev/null
@@ -1 +0,0 @@
-provides: spring-cloud-consul-bus
\ No newline at end of file
diff --git a/spring-cloud-starter-consul-bus/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml b/spring-cloud-starter-consul-bus/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml
deleted file mode 100644
index 8b89c977..00000000
--- a/spring-cloud-starter-consul-bus/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
- src/main/javadoc
-
diff --git a/spring-cloud-starter-consul-bus/target/maven-archiver/pom.properties b/spring-cloud-starter-consul-bus/target/maven-archiver/pom.properties
deleted file mode 100644
index d2dc086a..00000000
--- a/spring-cloud-starter-consul-bus/target/maven-archiver/pom.properties
+++ /dev/null
@@ -1,5 +0,0 @@
-#Generated by Maven
-#Thu Sep 22 13:40:40 UTC 2016
-version=1.1.0.BUILD-SNAPSHOT
-groupId=org.springframework.cloud
-artifactId=spring-cloud-starter-consul-bus
diff --git a/spring-cloud-starter-consul-bus/target/spring-cloud-starter-consul-bus-1.1.0.BUILD-SNAPSHOT-sources.jar b/spring-cloud-starter-consul-bus/target/spring-cloud-starter-consul-bus-1.1.0.BUILD-SNAPSHOT-sources.jar
deleted file mode 100644
index 61b1bbab..00000000
Binary files a/spring-cloud-starter-consul-bus/target/spring-cloud-starter-consul-bus-1.1.0.BUILD-SNAPSHOT-sources.jar and /dev/null differ
diff --git a/spring-cloud-starter-consul-bus/target/spring-cloud-starter-consul-bus-1.1.0.BUILD-SNAPSHOT.jar b/spring-cloud-starter-consul-bus/target/spring-cloud-starter-consul-bus-1.1.0.BUILD-SNAPSHOT.jar
deleted file mode 100644
index ab2dd643..00000000
Binary files a/spring-cloud-starter-consul-bus/target/spring-cloud-starter-consul-bus-1.1.0.BUILD-SNAPSHOT.jar and /dev/null differ
diff --git a/spring-cloud-starter-consul-bus/target/spring-cloud-starter-consul-bus-1.1.0.RELEASE-sources.jar b/spring-cloud-starter-consul-bus/target/spring-cloud-starter-consul-bus-1.1.0.RELEASE-sources.jar
deleted file mode 100644
index 73e11f72..00000000
Binary files a/spring-cloud-starter-consul-bus/target/spring-cloud-starter-consul-bus-1.1.0.RELEASE-sources.jar and /dev/null differ
diff --git a/spring-cloud-starter-consul-bus/target/spring-cloud-starter-consul-bus-1.1.0.RELEASE.jar b/spring-cloud-starter-consul-bus/target/spring-cloud-starter-consul-bus-1.1.0.RELEASE.jar
deleted file mode 100644
index 38c228b4..00000000
Binary files a/spring-cloud-starter-consul-bus/target/spring-cloud-starter-consul-bus-1.1.0.RELEASE.jar and /dev/null differ
diff --git a/spring-cloud-starter-consul-bus/target/spring-cloud-starter-consul-bus-1.1.1.BUILD-SNAPSHOT-sources.jar b/spring-cloud-starter-consul-bus/target/spring-cloud-starter-consul-bus-1.1.1.BUILD-SNAPSHOT-sources.jar
deleted file mode 100644
index 0802a769..00000000
Binary files a/spring-cloud-starter-consul-bus/target/spring-cloud-starter-consul-bus-1.1.1.BUILD-SNAPSHOT-sources.jar and /dev/null differ
diff --git a/spring-cloud-starter-consul-bus/target/spring-cloud-starter-consul-bus-1.1.1.BUILD-SNAPSHOT.jar b/spring-cloud-starter-consul-bus/target/spring-cloud-starter-consul-bus-1.1.1.BUILD-SNAPSHOT.jar
deleted file mode 100644
index 6bd0f996..00000000
Binary files a/spring-cloud-starter-consul-bus/target/spring-cloud-starter-consul-bus-1.1.1.BUILD-SNAPSHOT.jar and /dev/null differ
diff --git a/spring-cloud-starter-consul-config/target/classes/META-INF/spring.provides b/spring-cloud-starter-consul-config/target/classes/META-INF/spring.provides
deleted file mode 100644
index 76b15afb..00000000
--- a/spring-cloud-starter-consul-config/target/classes/META-INF/spring.provides
+++ /dev/null
@@ -1 +0,0 @@
-provides: spring-cloud-consul-config
\ No newline at end of file
diff --git a/spring-cloud-starter-consul-config/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml b/spring-cloud-starter-consul-config/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml
deleted file mode 100644
index 8b89c977..00000000
--- a/spring-cloud-starter-consul-config/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
- src/main/javadoc
-
diff --git a/spring-cloud-starter-consul-config/target/maven-archiver/pom.properties b/spring-cloud-starter-consul-config/target/maven-archiver/pom.properties
deleted file mode 100644
index 86b46161..00000000
--- a/spring-cloud-starter-consul-config/target/maven-archiver/pom.properties
+++ /dev/null
@@ -1,5 +0,0 @@
-#Generated by Maven
-#Thu Sep 22 13:40:41 UTC 2016
-version=1.1.0.BUILD-SNAPSHOT
-groupId=org.springframework.cloud
-artifactId=spring-cloud-starter-consul-config
diff --git a/spring-cloud-starter-consul-config/target/spring-cloud-starter-consul-config-1.1.0.BUILD-SNAPSHOT-sources.jar b/spring-cloud-starter-consul-config/target/spring-cloud-starter-consul-config-1.1.0.BUILD-SNAPSHOT-sources.jar
deleted file mode 100644
index 37535f12..00000000
Binary files a/spring-cloud-starter-consul-config/target/spring-cloud-starter-consul-config-1.1.0.BUILD-SNAPSHOT-sources.jar and /dev/null differ
diff --git a/spring-cloud-starter-consul-config/target/spring-cloud-starter-consul-config-1.1.0.BUILD-SNAPSHOT.jar b/spring-cloud-starter-consul-config/target/spring-cloud-starter-consul-config-1.1.0.BUILD-SNAPSHOT.jar
deleted file mode 100644
index 8f54a19f..00000000
Binary files a/spring-cloud-starter-consul-config/target/spring-cloud-starter-consul-config-1.1.0.BUILD-SNAPSHOT.jar and /dev/null differ
diff --git a/spring-cloud-starter-consul-config/target/spring-cloud-starter-consul-config-1.1.0.RELEASE-sources.jar b/spring-cloud-starter-consul-config/target/spring-cloud-starter-consul-config-1.1.0.RELEASE-sources.jar
deleted file mode 100644
index ebfe96d9..00000000
Binary files a/spring-cloud-starter-consul-config/target/spring-cloud-starter-consul-config-1.1.0.RELEASE-sources.jar and /dev/null differ
diff --git a/spring-cloud-starter-consul-config/target/spring-cloud-starter-consul-config-1.1.0.RELEASE.jar b/spring-cloud-starter-consul-config/target/spring-cloud-starter-consul-config-1.1.0.RELEASE.jar
deleted file mode 100644
index d6216204..00000000
Binary files a/spring-cloud-starter-consul-config/target/spring-cloud-starter-consul-config-1.1.0.RELEASE.jar and /dev/null differ
diff --git a/spring-cloud-starter-consul-config/target/spring-cloud-starter-consul-config-1.1.1.BUILD-SNAPSHOT-sources.jar b/spring-cloud-starter-consul-config/target/spring-cloud-starter-consul-config-1.1.1.BUILD-SNAPSHOT-sources.jar
deleted file mode 100644
index 291b201f..00000000
Binary files a/spring-cloud-starter-consul-config/target/spring-cloud-starter-consul-config-1.1.1.BUILD-SNAPSHOT-sources.jar and /dev/null differ
diff --git a/spring-cloud-starter-consul-config/target/spring-cloud-starter-consul-config-1.1.1.BUILD-SNAPSHOT.jar b/spring-cloud-starter-consul-config/target/spring-cloud-starter-consul-config-1.1.1.BUILD-SNAPSHOT.jar
deleted file mode 100644
index f591550c..00000000
Binary files a/spring-cloud-starter-consul-config/target/spring-cloud-starter-consul-config-1.1.1.BUILD-SNAPSHOT.jar and /dev/null differ
diff --git a/spring-cloud-starter-consul-discovery/target/classes/META-INF/spring.provides b/spring-cloud-starter-consul-discovery/target/classes/META-INF/spring.provides
deleted file mode 100644
index 85fed12c..00000000
--- a/spring-cloud-starter-consul-discovery/target/classes/META-INF/spring.provides
+++ /dev/null
@@ -1 +0,0 @@
-provides: spring-cloud-consul-discovery
\ No newline at end of file
diff --git a/spring-cloud-starter-consul-discovery/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml b/spring-cloud-starter-consul-discovery/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml
deleted file mode 100644
index 8b89c977..00000000
--- a/spring-cloud-starter-consul-discovery/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
- src/main/javadoc
-
diff --git a/spring-cloud-starter-consul-discovery/target/maven-archiver/pom.properties b/spring-cloud-starter-consul-discovery/target/maven-archiver/pom.properties
deleted file mode 100644
index ef4e4d28..00000000
--- a/spring-cloud-starter-consul-discovery/target/maven-archiver/pom.properties
+++ /dev/null
@@ -1,5 +0,0 @@
-#Generated by Maven
-#Thu Sep 22 13:40:43 UTC 2016
-version=1.1.0.BUILD-SNAPSHOT
-groupId=org.springframework.cloud
-artifactId=spring-cloud-starter-consul-discovery
diff --git a/spring-cloud-starter-consul-discovery/target/spring-cloud-starter-consul-discovery-1.1.0.BUILD-SNAPSHOT-sources.jar b/spring-cloud-starter-consul-discovery/target/spring-cloud-starter-consul-discovery-1.1.0.BUILD-SNAPSHOT-sources.jar
deleted file mode 100644
index a7e7f5bc..00000000
Binary files a/spring-cloud-starter-consul-discovery/target/spring-cloud-starter-consul-discovery-1.1.0.BUILD-SNAPSHOT-sources.jar and /dev/null differ
diff --git a/spring-cloud-starter-consul-discovery/target/spring-cloud-starter-consul-discovery-1.1.0.BUILD-SNAPSHOT.jar b/spring-cloud-starter-consul-discovery/target/spring-cloud-starter-consul-discovery-1.1.0.BUILD-SNAPSHOT.jar
deleted file mode 100644
index f2ed05e6..00000000
Binary files a/spring-cloud-starter-consul-discovery/target/spring-cloud-starter-consul-discovery-1.1.0.BUILD-SNAPSHOT.jar and /dev/null differ
diff --git a/spring-cloud-starter-consul-discovery/target/spring-cloud-starter-consul-discovery-1.1.0.RELEASE-sources.jar b/spring-cloud-starter-consul-discovery/target/spring-cloud-starter-consul-discovery-1.1.0.RELEASE-sources.jar
deleted file mode 100644
index 0f2825a2..00000000
Binary files a/spring-cloud-starter-consul-discovery/target/spring-cloud-starter-consul-discovery-1.1.0.RELEASE-sources.jar and /dev/null differ
diff --git a/spring-cloud-starter-consul-discovery/target/spring-cloud-starter-consul-discovery-1.1.0.RELEASE.jar b/spring-cloud-starter-consul-discovery/target/spring-cloud-starter-consul-discovery-1.1.0.RELEASE.jar
deleted file mode 100644
index 81dd83ce..00000000
Binary files a/spring-cloud-starter-consul-discovery/target/spring-cloud-starter-consul-discovery-1.1.0.RELEASE.jar and /dev/null differ
diff --git a/spring-cloud-starter-consul-discovery/target/spring-cloud-starter-consul-discovery-1.1.1.BUILD-SNAPSHOT-sources.jar b/spring-cloud-starter-consul-discovery/target/spring-cloud-starter-consul-discovery-1.1.1.BUILD-SNAPSHOT-sources.jar
deleted file mode 100644
index 6413c938..00000000
Binary files a/spring-cloud-starter-consul-discovery/target/spring-cloud-starter-consul-discovery-1.1.1.BUILD-SNAPSHOT-sources.jar and /dev/null differ
diff --git a/spring-cloud-starter-consul-discovery/target/spring-cloud-starter-consul-discovery-1.1.1.BUILD-SNAPSHOT.jar b/spring-cloud-starter-consul-discovery/target/spring-cloud-starter-consul-discovery-1.1.1.BUILD-SNAPSHOT.jar
deleted file mode 100644
index c43a14c9..00000000
Binary files a/spring-cloud-starter-consul-discovery/target/spring-cloud-starter-consul-discovery-1.1.1.BUILD-SNAPSHOT.jar and /dev/null differ
diff --git a/spring-cloud-starter-consul/target/classes/META-INF/spring.provides b/spring-cloud-starter-consul/target/classes/META-INF/spring.provides
deleted file mode 100644
index 174eee93..00000000
--- a/spring-cloud-starter-consul/target/classes/META-INF/spring.provides
+++ /dev/null
@@ -1 +0,0 @@
-provides: spring-cloud-consul-core, consul-api
\ No newline at end of file
diff --git a/spring-cloud-starter-consul/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml b/spring-cloud-starter-consul/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml
deleted file mode 100644
index 8b89c977..00000000
--- a/spring-cloud-starter-consul/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
- src/main/javadoc
-
diff --git a/spring-cloud-starter-consul/target/maven-archiver/pom.properties b/spring-cloud-starter-consul/target/maven-archiver/pom.properties
deleted file mode 100644
index 9f6dcf42..00000000
--- a/spring-cloud-starter-consul/target/maven-archiver/pom.properties
+++ /dev/null
@@ -1,5 +0,0 @@
-#Generated by Maven
-#Thu Sep 22 13:40:39 UTC 2016
-version=1.1.0.BUILD-SNAPSHOT
-groupId=org.springframework.cloud
-artifactId=spring-cloud-starter-consul
diff --git a/spring-cloud-starter-consul/target/spring-cloud-starter-consul-1.1.0.BUILD-SNAPSHOT-sources.jar b/spring-cloud-starter-consul/target/spring-cloud-starter-consul-1.1.0.BUILD-SNAPSHOT-sources.jar
deleted file mode 100644
index ab2a48a5..00000000
Binary files a/spring-cloud-starter-consul/target/spring-cloud-starter-consul-1.1.0.BUILD-SNAPSHOT-sources.jar and /dev/null differ
diff --git a/spring-cloud-starter-consul/target/spring-cloud-starter-consul-1.1.0.BUILD-SNAPSHOT.jar b/spring-cloud-starter-consul/target/spring-cloud-starter-consul-1.1.0.BUILD-SNAPSHOT.jar
deleted file mode 100644
index 5695dfd3..00000000
Binary files a/spring-cloud-starter-consul/target/spring-cloud-starter-consul-1.1.0.BUILD-SNAPSHOT.jar and /dev/null differ
diff --git a/spring-cloud-starter-consul/target/spring-cloud-starter-consul-1.1.0.RELEASE-sources.jar b/spring-cloud-starter-consul/target/spring-cloud-starter-consul-1.1.0.RELEASE-sources.jar
deleted file mode 100644
index 194b1248..00000000
Binary files a/spring-cloud-starter-consul/target/spring-cloud-starter-consul-1.1.0.RELEASE-sources.jar and /dev/null differ
diff --git a/spring-cloud-starter-consul/target/spring-cloud-starter-consul-1.1.0.RELEASE.jar b/spring-cloud-starter-consul/target/spring-cloud-starter-consul-1.1.0.RELEASE.jar
deleted file mode 100644
index 28256c12..00000000
Binary files a/spring-cloud-starter-consul/target/spring-cloud-starter-consul-1.1.0.RELEASE.jar and /dev/null differ
diff --git a/spring-cloud-starter-consul/target/spring-cloud-starter-consul-1.1.1.BUILD-SNAPSHOT-sources.jar b/spring-cloud-starter-consul/target/spring-cloud-starter-consul-1.1.1.BUILD-SNAPSHOT-sources.jar
deleted file mode 100644
index 5e7df3da..00000000
Binary files a/spring-cloud-starter-consul/target/spring-cloud-starter-consul-1.1.1.BUILD-SNAPSHOT-sources.jar and /dev/null differ
diff --git a/spring-cloud-starter-consul/target/spring-cloud-starter-consul-1.1.1.BUILD-SNAPSHOT.jar b/spring-cloud-starter-consul/target/spring-cloud-starter-consul-1.1.1.BUILD-SNAPSHOT.jar
deleted file mode 100644
index c2422e98..00000000
Binary files a/spring-cloud-starter-consul/target/spring-cloud-starter-consul-1.1.1.BUILD-SNAPSHOT.jar and /dev/null differ
diff --git a/target/ghpages.sh b/target/ghpages.sh
deleted file mode 100755
index 9b83f744..00000000
--- a/target/ghpages.sh
+++ /dev/null
@@ -1,356 +0,0 @@
-#!/bin/bash -x
-
-# Usage: (cd ; ghpages.sh -v -b -c)
-
-set -e
-
-# Set default props like MAVEN_PATH, ROOT_FOLDER etc.
-function set_default_props() {
- # The script should be executed from the root folder
- ROOT_FOLDER=`pwd`
- echo "Current folder is ${ROOT_FOLDER}"
-
- if [[ ! -e "${ROOT_FOLDER}/.git" ]]; then
- echo "You're not in the root folder of the project!"
- exit 1
- fi
-
- # Prop that will let commit the changes
- COMMIT_CHANGES="no"
- MAVEN_PATH=${MAVEN_PATH:-}
- if [ -e "${ROOT_FOLDER}/mvnw" ]; then
- MAVEN_EXEC="$ROOT_FOLDER/mvnw"
- else
- MAVEN_EXEC="${MAVEN_PATH}mvn"
- fi
- echo "Path to Maven is [${MAVEN_EXEC}]"
- if [ -z $REPO_NAME ]; then
- REPO_NAME=$(git remote -v | grep origin | head -1 | sed -e 's!.*/!!' -e 's/\.git.*//')
- fi
- echo "Repo name is [${REPO_NAME}]"
- SPRING_CLOUD_STATIC_REPO=${SPRING_CLOUD_STATIC_REPO:-git@github.com:spring-cloud/spring-cloud-static.git}
- echo "Spring Cloud Static repo is [${SPRING_CLOUD_STATIC_REPO}"
-}
-
-# Check if gh-pages exists and docs have been built
-function check_if_anything_to_sync() {
- git remote set-url --push origin `git config remote.origin.url | sed -e 's/^git:/https:/'`
-
- if ! (git remote set-branches --add origin gh-pages && git fetch -q) && [[ "${RELEASE_TRAIN}" != "yes" ]] ; then
- echo "No gh-pages, so not syncing"
- exit 0
- fi
-
- if ! [ -d docs/target/generated-docs ] && ! [ "${BUILD}" == "yes" ]; then
- echo "No gh-pages sources in docs/target/generated-docs, so not syncing"
- exit 0
- fi
-}
-
-function retrieve_current_branch() {
- # Code getting the name of the current branch. For master we want to publish as we did until now
- # http://stackoverflow.com/questions/1593051/how-to-programmatically-determine-the-current-checked-out-git-branch
- # If there is a branch already passed will reuse it - otherwise will try to find it
- CURRENT_BRANCH=${BRANCH}
- if [[ -z "${CURRENT_BRANCH}" ]] ; then
- CURRENT_BRANCH=$(git symbolic-ref -q HEAD)
- CURRENT_BRANCH=${CURRENT_BRANCH##refs/heads/}
- CURRENT_BRANCH=${CURRENT_BRANCH:-HEAD}
- fi
- echo "Current branch is [${CURRENT_BRANCH}]"
- git checkout ${CURRENT_BRANCH} || echo "Failed to check the branch... continuing with the script"
-}
-
-# Switches to the provided value of the release version. We always prefix it with `v`
-function switch_to_tag() {
- if [[ "${RELEASE_TRAIN}" != "yes" ]] ; then
- git checkout v${VERSION}
- fi
-}
-
-# Build the docs if switch is on
-function build_docs_if_applicable() {
- if [[ "${BUILD}" == "yes" ]] ; then
- ./mvnw clean install -P docs -pl docs -DskipTests
- fi
-}
-
-# Get the name of the `docs.main` property
-# Get whitelisted branches - assumes that a `docs` module is available under `docs` profile
-function retrieve_doc_properties() {
- MAIN_ADOC_VALUE=$("${MAVEN_EXEC}" -q \
- -Dexec.executable="echo" \
- -Dexec.args='${docs.main}' \
- org.codehaus.mojo:exec-maven-plugin:1.3.1:exec \
- -P docs \
- -pl docs)
- echo "Extracted 'main.adoc' from Maven build [${MAIN_ADOC_VALUE}]"
-
-
- WHITELIST_PROPERTY=${WHITELIST_PROPERTY:-"docs.whitelisted.branches"}
- WHITELISTED_BRANCHES_VALUE=$("${MAVEN_EXEC}" -q \
- -Dexec.executable="echo" \
- -Dexec.args="\${${WHITELIST_PROPERTY}}" \
- org.codehaus.mojo:exec-maven-plugin:1.3.1:exec \
- -P docs \
- -pl docs)
- echo "Extracted '${WHITELIST_PROPERTY}' from Maven build [${WHITELISTED_BRANCHES_VALUE}]"
-}
-
-# Stash any outstanding changes
-function stash_changes() {
- git diff-index --quiet HEAD && dirty=$? || (echo "Failed to check if the current repo is dirty. Assuming that it is." && dirty="1")
- if [ "$dirty" != "0" ]; then git stash; fi
-}
-
-# Switch to gh-pages branch to sync it with current branch
-function add_docs_from_target() {
- local DESTINATION_REPO_FOLDER
- if [[ -z "${DESTINATION}" && -z "${CLONE}" ]] ; then
- DESTINATION_REPO_FOLDER=${ROOT_FOLDER}
- elif [[ "${CLONE}" == "yes" ]]; then
- mkdir -p ${ROOT_FOLDER}/target
- local clonedStatic=${ROOT_FOLDER}/target/spring-cloud-static
- if [[ ! -e "${clonedStatic}/.git" ]]; then
- echo "Cloning Spring Cloud Static to target"
- git clone ${SPRING_CLOUD_STATIC_REPO} ${clonedStatic} && cd ${clonedStatic} && git checkout gh-pages
- else
- echo "Spring Cloud Static already cloned - will pull changes"
- cd ${clonedStatic} && git checkout gh-pages && git pull origin gh-pages
- fi
- if [[ -z "${RELEASE_TRAIN}" ]] ; then
- DESTINATION_REPO_FOLDER=${clonedStatic}/${REPO_NAME}
- else
- DESTINATION_REPO_FOLDER=${clonedStatic}
- fi
- mkdir -p ${DESTINATION_REPO_FOLDER}
- else
- if [[ ! -e "${DESTINATION}/.git" ]]; then
- echo "[${DESTINATION}] is not a git repository"
- exit 1
- fi
- if [[ -z "${RELEASE_TRAIN}" ]] ; then
- DESTINATION_REPO_FOLDER=${DESTINATION}/${REPO_NAME}
- else
- DESTINATION_REPO_FOLDER=${DESTINATION}
- fi
- mkdir -p ${DESTINATION_REPO_FOLDER}
- echo "Destination was provided [${DESTINATION}]"
- fi
- cd ${DESTINATION_REPO_FOLDER}
- git checkout gh-pages
- git pull origin gh-pages
-
- # Add git branches
- ###################################################################
- if [[ -z "${VERSION}" && -z "${RELEASE_TRAIN}" ]] ; then
- copy_docs_for_current_version
- else
- copy_docs_for_provided_version
- fi
- commit_changes_if_applicable
-}
-
-
-# Copies the docs by using the retrieved properties from Maven build
-function copy_docs_for_current_version() {
- if [[ "${CURRENT_BRANCH}" == "master" ]] ; then
- echo -e "Current branch is master - will copy the current docs only to the root folder"
- for f in docs/target/generated-docs/*; do
- file=${f#docs/target/generated-docs/*}
- if ! git ls-files -i -o --exclude-standard --directory | grep -q ^$file$; then
- # Not ignored...
- cp -rf $f ${ROOT_FOLDER}/
- fi
- done
- git add -A ${ROOT_FOLDER}
- COMMIT_CHANGES="yes"
- else
- echo -e "Current branch is [${CURRENT_BRANCH}]"
- # http://stackoverflow.com/questions/29300806/a-bash-script-to-check-if-a-string-is-present-in-a-comma-separated-list-of-strin
- if [[ ",${WHITELISTED_BRANCHES_VALUE}," = *",${CURRENT_BRANCH},"* ]] ; then
- mkdir -p ${ROOT_FOLDER}/${CURRENT_BRANCH}
- echo -e "Branch [${CURRENT_BRANCH}] is whitelisted! Will copy the current docs to the [${CURRENT_BRANCH}] folder"
- for f in docs/target/generated-docs/*; do
- file=${f#docs/target/generated-docs/*}
- if ! git ls-files -i -o --exclude-standard --directory | grep -q ^$file$; then
- # Not ignored...
- # We want users to access 1.0.0.RELEASE/ instead of 1.0.0.RELEASE/spring-cloud.sleuth.html
- if [[ "${file}" == "${MAIN_ADOC_VALUE}.html" ]] ; then
- # We don't want to copy the spring-cloud-sleuth.html
- # we want it to be converted to index.html
- cp -rf $f ${ROOT_FOLDER}/${CURRENT_BRANCH}/index.html
- git add -A ${ROOT_FOLDER}/${CURRENT_BRANCH}/index.html
- else
- cp -rf $f ${ROOT_FOLDER}/${CURRENT_BRANCH}
- git add -A ${ROOT_FOLDER}/${CURRENT_BRANCH}/$file
- fi
- fi
- done
- COMMIT_CHANGES="yes"
- else
- echo -e "Branch [${CURRENT_BRANCH}] is not on the white list! Check out the Maven [${WHITELIST_PROPERTY}] property in
- [docs] module available under [docs] profile. Won't commit any changes to gh-pages for this branch."
- fi
- fi
-}
-
-# Copies the docs by using the explicitly provided version
-function copy_docs_for_provided_version() {
- local FOLDER=${DESTINATION_REPO_FOLDER}/${VERSION}
- mkdir -p ${FOLDER}
- echo -e "Current tag is [v${VERSION}] Will copy the current docs to the [${FOLDER}] folder"
- for f in ${ROOT_FOLDER}/docs/target/generated-docs/*; do
- file=${f#${ROOT_FOLDER}/docs/target/generated-docs/*}
- copy_docs_for_branch ${file} ${FOLDER}
- done
- COMMIT_CHANGES="yes"
- CURRENT_BRANCH="v${VERSION}"
-}
-
-# Copies the docs from target to the provided destination
-# Params:
-# $1 - file from target
-# $2 - destination to which copy the files
-function copy_docs_for_branch() {
- local file=$1
- local destination=$2
- if ! git ls-files -i -o --exclude-standard --directory | grep -q ^${file}$; then
- # Not ignored...
- # We want users to access 1.0.0.RELEASE/ instead of 1.0.0.RELEASE/spring-cloud.sleuth.html
- if [[ ("${file}" == "${MAIN_ADOC_VALUE}.html") || ("${file}" == "${REPO_NAME}.html") ]] ; then
- # We don't want to copy the spring-cloud-sleuth.html
- # we want it to be converted to index.html
- cp -rf $f ${destination}/index.html
- else
- cp -rf $f ${destination}
- fi
- git add -A ${destination}
- fi
-}
-
-function commit_changes_if_applicable() {
- if [[ "${COMMIT_CHANGES}" == "yes" ]] ; then
- COMMIT_SUCCESSFUL="no"
- git commit -a -m "Sync docs from ${CURRENT_BRANCH} to gh-pages" && COMMIT_SUCCESSFUL="yes" || echo "Failed to commit changes"
-
- # Uncomment the following push if you want to auto push to
- # the gh-pages branch whenever you commit to master locally.
- # This is a little extreme. Use with care!
- ###################################################################
- if [[ "${COMMIT_SUCCESSFUL}" == "yes" ]] ; then
- git push origin gh-pages
- fi
- fi
-}
-
-# Switch back to the previous branch and exit block
-function checkout_previous_branch() {
- # If -version was provided we need to come back to root project
- cd ${ROOT_FOLDER}
- git checkout ${CURRENT_BRANCH} || echo "Failed to check the branch... continuing with the script"
- if [ "$dirty" != "0" ]; then git stash pop; fi
- exit 0
-}
-
-# Assert if properties have been properly passed
-function assert_properties() {
-echo "VERSION [${VERSION}], RELEASE_TRAIN [${RELEASE_TRAIN}], DESTINATION [${DESTINATION}], CLONE [${CLONE}]"
-if [[ "${VERSION}" != "" && (-z "${DESTINATION}" && -z "${CLONE}") ]] ; then echo "Version was set but destination / clone was not!"; exit 1;fi
-if [[ ("${DESTINATION}" != "" && "${CLONE}" != "") && -z "${VERSION}" ]] ; then echo "Destination / clone was set but version was not!"; exit 1;fi
-if [[ "${DESTINATION}" != "" && "${CLONE}" == "yes" ]] ; then echo "Destination and clone was set. Pick one!"; exit 1;fi
-if [[ "${RELEASE_TRAIN}" != "" && -z "${VERSION}" ]] ; then echo "Release train was set but no version was passed!"; exit 1;fi
-}
-
-# Prints the usage
-function print_usage() {
-cat </`
-- if the destination switch is passed (-d) then the script will check if the provided dir is a git repo and then will
- switch to gh-pages of that repo and copy the generated docs to `docs//`
-- if the release train switch is passed (-r) then the script will check if the provided dir is a git repo and then will
- switch to gh-pages of that repo and copy the generated docs to `docs/`
-
-USAGE:
-
-You can use the following options:
-
--v|--version - the script will apply the whole procedure for a particular library version
--r|--releasetrain - instead of nesting the docs under the project_name/version folder the docs will end up in version
--d|--destination - the root of destination folder where the docs should be copied. You have to use the full path.
- E.g. point to spring-cloud-static folder. Can't be used with (-c)
--b|--build - will run the standard build process after checking out the branch
--c|--clone - will automatically clone the spring-cloud-static repo instead of providing the destination.
- Obviously can't be used with (-d)
-
-EOF
-}
-
-
-# ==========================================
-# ____ ____ _____ _____ _____ _______
-# / ____|/ ____| __ \|_ _| __ \__ __|
-# | (___ | | | |__) | | | | |__) | | |
-# \___ \| | | _ / | | | ___/ | |
-# ____) | |____| | \ \ _| |_| | | |
-# |_____/ \_____|_| \_\_____|_| |_|
-#
-# ==========================================
-
-while [[ $# > 0 ]]
-do
-key="$1"
-case ${key} in
- -v|--version)
- VERSION="$2"
- shift # past argument
- ;;
- -r|--releasetrain)
- RELEASE_TRAIN="yes"
- ;;
- -d|--destination)
- DESTINATION="$2"
- shift # past argument
- ;;
- -b|--build)
- BUILD="yes"
- ;;
- -c|--clone)
- CLONE="yes"
- ;;
- -h|--help)
- print_usage
- exit 0
- ;;
- *)
- echo "Invalid option: [$1]"
- print_usage
- exit 1
- ;;
-esac
-shift # past argument or value
-done
-
-assert_properties
-set_default_props
-check_if_anything_to_sync
-if [[ -z "${VERSION}" ]] ; then
- retrieve_current_branch
-else
- switch_to_tag
-fi
-build_docs_if_applicable
-retrieve_doc_properties
-stash_changes
-add_docs_from_target
-checkout_previous_branch